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

:root {
  --bg-color: #f7f8fa;
  --card-bg: #ffffff;
  --text-primary: #1a202c;
  --text-secondary: #0f172a;
  --border-color: #e2e8f0;
  --accent-color: #3b82f6;
  /* A nice blue for accent */
  --accent-light: #eff6ff;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a202c;
  overflow-x: hidden;
}

.container {
  /* width: 100%; */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c7a62;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #1a4a3a;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #2c7a62;
}

.nav-links a:focus,
.btn:focus {
  outline: 2px solid #1a6b54;
  outline-offset: 2px;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  padding: 0.5rem 0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  list-style: none;
  z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
  border: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #475569;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: #2c7a62;
  padding-left: 1.5rem;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
  .dropdown {
    position: static;
  }

  .dropdown>.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Remove the default arrow and add our own indicator */
  .dropdown>.dropdown-toggle {
    padding-right: 3rem;
    position: relative;
  }

  .dropdown>.dropdown-toggle::after {
    content: '+';
    position: absolute;
    right: 1rem;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .dropdown.open>.dropdown-toggle::after {
    transform: rotate(45deg);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f1f5f9;
    padding: 0;
    display: none;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    max-height: none;
    overflow: visible;
  }

  .dropdown-menu.show {
    display: block;
    animation: slideDown 0.2s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .dropdown-menu li {
    border-bottom: 1px solid #e2e8f0;
  }

  .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .dropdown-menu a {
    padding: 1rem 1.5rem 1rem 2.5rem;
    font-size: 1rem;
    color: #475569;
  }

  .dropdown-menu a:hover {
    background: #e2e8f0;
    padding-left: 2.5rem;
    color: #2c7a62;
  }
}
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #1a6b54;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger:hover span {
  background-color: #1a4a3a;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* ============================================
   HERO SECTION (Clean & Modern)
=========================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 1.5rem 4rem;
  background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
  overflow: hidden;
}

#hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Gradient Blur Effect */
.hero-gradient-blur {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(74, 155, 142, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Left Side - Text Content */
.hero-left {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #2c7a62;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
  border: 1px solid #e2e8f0;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.title-name {
  background: linear-gradient(135deg, #1a6b54, #1a4a3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-role {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #334155;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  min-height: 2.5em; /* Reserve space to prevent CLS */
}

.role-static {
  color: #64748b;
}

#typing-text {
  color: #2c7a62;
  font-weight: 700;
}

.cursor {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background: #1a6b54;
  margin-left: 2px;
  animation: blink 1s infinite;
  vertical-align: text-bottom;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-description strong {
  color: #2c7a62;
  font-weight: 600;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

#hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

#hero .btn-primary {
  background: linear-gradient(135deg, #1a6b54, #3b8a82);
  color: white;
  box-shadow: 0 4px 14px rgba(74, 155, 142, 0.3);
}

#hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 155, 142, 0.4);
}

#hero .btn-outline {
  background: white;
  color: #475569;
  border: 2px solid #e2e8f0;
}

#hero .btn-outline:hover {
  border-color: #1a6b54;
  color: #2c7a62;
  background: #f0fdfa;
}

/* Mini Stats */
.hero-mini-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  width: fit-content;
}

.mini-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mini-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
  text-align: center;
}

.mini-stat .stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: #e2e8f0;
}

/* Right Side - Image */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-image-wrapper {
  position: relative;
  width: 350px;
  height: 466px;
}

.hero-image-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transform: rotate(-3deg);
  transition: transform 0.5s ease;
}

.hero-image-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-profile-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.image-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 40%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 60%);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Floating Skill Pills */
.skill-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.65rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 3;
  white-space: nowrap;
}

.skill-float svg {
  color: #2c7a62;
  flex-shrink: 0;
}

.float-1 {
  top: 30px;
  right: -80px;
  animation: floatPulse 4s ease-in-out infinite;
}

.float-2 {
  bottom: 80px;
  left: -130px;
  animation: floatPulse 4s ease-in-out infinite 1.5s;
}

.float-3 {
  bottom: 30px;
  right: -60px;
  animation: floatPulse 4s ease-in-out infinite 3s;
}

@keyframes floatPulse {

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

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

/* Hero Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    max-width: 100%;
  }

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

  .hero-mini-stats {
    margin: 0 auto;
  }

  .hero-image-wrapper {
    width: 260px;
    height: 330px;
  }

  .float-1 {
    right: -30px;
  }

  .float-2 {
    left: -35px;
  }

  .float-3 {
    right: -20px;
  }
}

@media (max-width: 576px) {
  #hero {
    padding: 5rem 1rem 3rem;
  }

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

  .hero-role {
    font-size: 1.1rem;
    justify-content: center;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  #hero .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-mini-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-image-wrapper {
    width: 240px;
    height: 300px;
  }

  .skill-float {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  .skill-float svg {
    width: 16px;
    height: 16px;
  }

  .float-1 {
    top: 15px;
    right: -20px;
  }

  .float-2 {
    bottom: 60px;
    left: -25px;
  }

  .float-3 {
    bottom: 15px;
    right: -15px;
  }
}

/* Section Styles */
.section {
  padding: 5rem 0;
  background: white;
}

.section:nth-child(even) {
  background: #ffffff;
}

.section:nth-child(odd) {
  background: #fafbfc;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a202c;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #1a6b54, #1a4a3a);
  border-radius: 2px;
}

/* ============================================
   EDUCATION & CERTIFICATIONS SECTION
=========================================== */

/* Split column layout */
.edu-cert-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.edu-cert-column {
  min-height: 400px;
}

/* Column headers */
.column-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.column-header svg {
  flex-shrink: 0;
}

.education-header {
  color: #2c7a62;
}

.education-header svg {
  color: #2c7a62;
}

.certification-header {
  color: #f59e0b;
}

.certification-header svg {
  color: #f59e0b;
}

.column-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

/* Timeline for Education */
.timeline {
  position: relative;
  padding-left: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #1a6b54, #e2e8f0);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -1.5rem;
  top: 0.4rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1a6b54;
  border: 3px solid #f8fafc;
  box-shadow: 0 0 0 2px #1a6b54;
}

.timeline-dot.special {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 0 0 2px #f59e0b;
}

.timeline-content {
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(74, 155, 142, 0.15);
  border-color: #1a6b54;
}

.timeline-year {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2c7a62;
  background: #f0fdfa;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 0.5rem 0;
}

.timeline-institution {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0 0 0.75rem 0;
}

.score-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.score-badge svg {
  flex-shrink: 0;
  color: #f59e0b;
}

.special-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Certification Cards */
.cert-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cert-card {
  position: relative;
  background: white;
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
  border-color: #f59e0b;
}

.cert-card.featured {
  border: 2px solid #f59e0b;
  background: linear-gradient(135deg, #fffbeb, #ffffff);
}

.cert-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cert-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
}

.cert-content {
  flex: 1;
}

.cert-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 0.4rem 0;
}

.cert-issuer {
  color: #64748b;
  font-size: 0.85rem;
  margin: 0 0 0.75rem 0;
}

.cert-score {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.score-main {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #f59e0b;
}

.score-main.highlight {
  font-size: 1.3rem;
}

.score-breakdown {
  font-size: 0.8rem;
  color: #94a3b8;
  font-family: "Roboto Mono", monospace;
}

/* Mobile responsive */
@media (max-width: 868px) {
  .edu-cert-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ============================================
   WORK EXPERIENCE SECTION
=========================================== */

.experience-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Company Block */
.exp-company-block {
  position: relative;
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.exp-company-block:hover {
  box-shadow: 0 8px 24px rgba(74, 155, 142, 0.15);
  transform: translateY(-2px);
}

.exp-company-block.current {
  border: 2px solid #1a6b54;
  background: linear-gradient(135deg, #f0fdfa, #ffffff);
}

.exp-company-block.current::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a6b54, #1a4a3a);
}

/* Company Header */
.exp-company-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.company-logo-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.company-logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-info {
  flex: 1;
}

.company-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.company-info h3 span {
  color: #2c7a62;
}

.company-location {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0.25rem 0 0 0;
}

.current-badge {
  background: linear-gradient(135deg, #1a6b54, #1a4a3a);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exp-duration {
  background: #e2e8f0;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
}

/* Roles */
.exp-roles {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.exp-role-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.2s ease;
}

.exp-role-card:hover {
  border-color: #1a6b54;
  box-shadow: 0 4px 12px rgba(74, 155, 142, 0.1);
}

.exp-role-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.exp-role-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.exp-role-period {
  font-size: 0.8rem;
  color: #2c7a62;
  font-weight: 600;
  background: #f0fdfa;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  white-space: nowrap;
}

.exp-role-tasks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.exp-role-tasks li {
  font-size: 0.9rem;
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.exp-role-tasks li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #2c7a62;
  font-weight: 700;
}

/* Awards Row */
.awards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.award-badge svg {
  flex-shrink: 0;
  color: #f59e0b;
}

/* Experience Responsive */
@media (max-width: 640px) {
  .exp-company-header {
    flex-wrap: wrap;
  }

  .exp-role-header {
    flex-direction: column;
  }

  .awards-row {
    flex-direction: column;
  }

  .award-badge {
    width: 100%;
  }
}

/* Project temporary CSS */

/* Main Container for this section */
#projects-under-construction .container {
  max-width: 1200px;
  /* 896px */
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  /* Adjust padding as needed */
  text-align: center;
}

/* Section Title (assuming you have a global .section-title style) */
#projects-under-construction .section-title {
  font-size: 2.25rem;
  /* 36px */
  font-weight: 700;
  color: #111827;
  /* gray-900 */
  margin-bottom: 3rem;
  /* 48px */
  text-align: center;
}

/* The main "coming soon" box */
#projects-under-construction .coming-soon-box {
  background-color: white;
  /* slate-50 */
  border: 3px solid #e2e8f0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* slate-200 */
  border-radius: 0.75rem;
  /* 12px */
  padding: 4rem 2rem;
  /* 64px top/bottom, 32px left/right */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  /* 24px */
}

/* Icon styling */
#projects-under-construction .construction-icon,
#achievments .construction-icon {
  width: 4rem;
  /* 64px */
  height: 4rem;
  /* 64px */
  color: #f59e0b;
  /* amber-500 */
}

/* Heading inside the box */
#projects-under-construction .coming-soon-title {
  font-size: 1.5rem;
  /* 24px */
  font-weight: 600;
  color: #1f2937;
  /* gray-800 */
}

/* Paragraph text inside the box */
#projects-under-construction .coming-soon-text {
  color: #6b7280;
  /* gray-500 */
  max-width: 36rem;
  /* 576px */
  line-height: 1.6;
}

/* Projects Section */

#projects {
  display: none;
}

/*
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #1a6b54;
    color: #2c7a62;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: #1a6b54;
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-image {
    height: 200px;
    background: linear-gradient(45deg, #1a6b54, #1a4a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.project-content {
    padding: 1.5rem;
}

.project-category {
    background: #1a6b54;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.project-description {
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

*/

/* ============================================
   ABOUT SECTION
=========================================== */
.about-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.bio-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.bio-intro {
  margin-bottom: 1.5rem;
}

.current-role {
  display: inline-block;
  background: linear-gradient(135deg, #1a6b54, #1a4a3a);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.bio-intro h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a202c;
  margin: 0 0 0.5rem 0;
}

.bio-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #64748b;
  font-size: 0.9rem;
}

.bio-description {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.bio-description p {
  margin-bottom: 1rem;
}

.bio-description p:last-child {
  margin-bottom: 0;
}

.bio-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
}

.highlight-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wordpress-icon {
  background: #fef3c7;
  color: #92400e;
}

.team-icon {
  background: #dbeafe;
  color: #1d4ed8;
}

.award-icon {
  background: #fef3c7;
  color: #f59e0b;
}

/* About Stats */
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(74, 155, 142, 0.15);
  border-color: #1a6b54;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #2c7a62;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.4rem;
}

/* Interests Card */
.interests-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.interests-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 1rem 0;
}

/* Personal Interests */
.personal-interests {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.interest-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.interest-item:hover {
  background: #f1f5f9;
}

.interest-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.cricket-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.bike-icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.interest-content h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 0.25rem 0;
}

.interest-content p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   SKILLS SECTION (NEW)
=========================================== */
.skills-organized {
  max-width: 1000px;
  margin: 0 auto;
}

.section-subtitle {
  text-align: center;
  color: #475569;
  font-size: 1rem;
  margin: -1.5rem auto 3rem;
}

/* Featured WordPress Card */
.skill-featured {
  background: linear-gradient(135deg, #f0fdfa, #ffffff);
  border: 2px solid #1a6b54;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(74, 155, 142, 0.15);
}

.featured-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.featured-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c7a62;
}

.featured-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.core-badge {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-left: 0.5rem;
}

.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Skills Grid New */
.skills-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.skill-category {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.skill-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: #1a6b54;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: #2c7a62;
}

.category-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.skill-tag {
  font-family: "Roboto Mono", monospace;
  background-color: #f1f5f9;
  color: #475569;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.skill-tag:hover {
  background-color: #1a6b54;
  color: white;
}

/* About & Skills Responsive */
@media (max-width: 868px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 540px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid-new {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   AWARDS & RECOGNITION SECTION
=========================================== */

/* Featured Individual Award Hero Card */
.featured-individual-award {
  max-width: 700px;
  margin: 0 auto 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #fffbeb, #ffffff);
  border: 2px solid #f59e0b;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.2);
  position: relative;
  overflow: hidden;
}

.featured-individual-award::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.featured-individual-award .featured-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 16px;
  color: white;
  flex-shrink: 0;
}

.featured-individual-award .featured-badge svg {
  width: 32px;
  height: 32px;
  margin-bottom: 0.25rem;
}

.featured-individual-award .featured-badge span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
}

.featured-content {
  flex: 1;
}

.featured-year {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f59e0b;
  background: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

.featured-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a202c;
  margin: 0 0 0.75rem 0;
}

.featured-content p {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Team Awards Section */
.team-awards-section {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.team-awards-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: #2c7a62;
}

.team-awards-header svg {
  flex-shrink: 0;
}

.team-awards-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

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

.team-award-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
}

.team-award-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(74, 155, 142, 0.12);
  border-color: #1a6b54;
}

.team-award-card .award-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2c7a62;
  background: #f0fdfa;
  padding: 0.3rem 0.75rem;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.team-award-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.team-award-card p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.team-award-card .award-note {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  font-style: italic;
  margin-top: 0.75rem;
}

/* Milestone Banner */
.milestone-banner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #f0fdfa, #ffffff);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  border: 2px solid #1a6b54;
  box-shadow: 0 4px 16px rgba(74, 155, 142, 0.15);
}

.milestone-icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c7a62;
  flex-shrink: 0;
}

.milestone-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 0.35rem 0;
}

.milestone-info p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}

.milestone-link {
  color: #2c7a62;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s ease;
}

.milestone-link:hover {
  text-decoration: underline;
  transform: translateX(3px);
}

/* Awards Responsive */
@media (max-width: 640px) {
  .featured-individual-award {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .featured-individual-award .featured-badge {
    width: 64px;
    height: 64px;
  }

  .featured-individual-award .featured-badge svg {
    width: 28px;
    height: 28px;
  }

  .featured-individual-award .featured-badge span {
    font-size: 0.65rem;
  }

  .featured-content h3 {
    font-size: 1.25rem;
  }

  .team-awards-grid {
    grid-template-columns: 1fr;
  }

  .milestone-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .milestone-icon {
    margin: 0 auto;
  }
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3,
.contact-info h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2d3748;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a6b54;
}

.btn-primary {
  background: linear-gradient(45deg, #1a6b54, #1a4a3a);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(74, 155, 142, 0.3);
}

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

.contact-icon {
  color: #2c7a62;
  flex-shrink: 0;
}

.contact-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.contact-item-inline-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.contact-item-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 2rem;
  margin-bottom: 0;
}

.contact-item i {
  font-size: 1.5rem;
  color: #2c7a62;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 1rem;
  color: #4a5568;
  margin: 0;
}

.contact-item p a {
  color: #2c7a62;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item p a:hover {
  color: #1a4a3a;
  text-decoration: underline;
}

.contact-links-section {
  margin-top: 1.5rem;
}

.contact-links-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px;
}

.social-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.social-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  color: #475569;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-link-inline:hover {
  background: #1a6b54;
  color: white;
  border-color: #1a6b54;
  transform: translateY(-2px);
}

.social-link-inline.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-link-inline.instagram:hover {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584);
  border-color: #c13584;
}

.social-link-inline.twitter:hover {
  background: #000000;
  border-color: #000000;
}

.social-link-inline.github:hover {
  background: #333333;
  border-color: #333333;
}

.social-link-inline.gist:hover {
  background: #333333;
  border-color: #333333;
}

.social-link-inline.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.social-link-inline.wordpress:hover {
  background: #21759b;
  border-color: #21759b;
}

.social-link-inline svg {
  flex-shrink: 0;
}

.social-link-inline span {
  font-weight: 500;
}

/* Footer */
.footer {
  background: #2d3748;
  color: white;
  padding: 3rem 0 1rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #1a6b54;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #1a4a3a;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {

  .hero-content,
  .contact-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-image {
    order: 1;
    margin-bottom: 2rem;
  }

  .social-links-inline {
    justify-content: center;
  }

  .contact-item-inline-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .contact-item-inline {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  /* Show hamburger button on mobile */
  .hamburger {
    display: flex;
  }

  /* Mobile navigation styles */
  .nav-links {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 70% !important; /* 70% width for menu */
    height: calc(100vh - 70px) !important; /* Full height minus header */
    flex-direction: column !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    padding: 2rem 0 !important;
    gap: 0 !important;
    box-shadow: 2px 0 30px rgba(0, 0, 0, 0.15) !important;
    transform: translateX(-100%) !important;
    transition: transform 0.3s ease !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    z-index: 9999 !important;
    opacity: 0;
    visibility: hidden;
  }

  /* Custom scrollbar for mobile menu */
  .nav-links::-webkit-scrollbar {
    width: 6px;
  }

  .nav-links::-webkit-scrollbar-track {
    background: transparent;
  }

  .nav-links::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
  }

  .nav-links.active {
    transform: translateX(0) !important;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links>li>a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
  }

  /* Dropdown toggle specific styles on mobile */
  .nav-links>li.dropdown>.dropdown-toggle {
    padding-right: 3.5rem;
    position: relative;
  }

  /* Fix dropdown on mobile */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8fafc;
    padding-left: 0;
    display: none;
    max-height: none;
    overflow: visible;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-menu li {
    border-bottom: 1px solid #e2e8f0;
  }

  .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .dropdown-menu a {
    padding: 0.85rem 1.5rem 0.85rem 2.5rem;
    font-size: 1rem;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-content {
    margin-left: 3rem;
    margin-right: 0;
  }

  .timeline-dot {
    left: 20px;
  }

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

/* Loading Animation */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: slideInUp 0.8s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #1a6b54, #1a4a3a);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* ============================================
   CASE STUDIES SECTION STYLES
=========================================== */
.case-studies-grid {
  column-count: 3;
  column-gap: 2rem;
  margin-top: 3rem;
}

.case-study-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  break-inside: avoid;
  margin-bottom: 2rem;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.case-study-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a6b54, #1a4a3a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.case-study-icon svg {
  width: 30px;
  height: 30px;
  stroke: white;
}

.case-study-card h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.case-study-tags .tag {
  background: var(--accent-light);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.case-study-content {
  margin-top: 1.5rem;
}

.case-study-section {
  margin-bottom: 1.25rem;
}

.case-study-section:last-child {
  margin-bottom: 0;
}

.case-study-section h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2c7a62;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.case-study-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   ACHIEVEMENTS SECTION STYLES
=========================================== */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.achievement-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a6b54, #1a4a3a);
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.achievement-icon svg {
  width: 30px;
  height: 30px;
  stroke: white;
}

.achievement-card h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.achievement-org {
  color: #2c7a62;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.achievement-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.achievement-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.achievement-stats .stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2c7a62;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.achievement-link {
  display: inline-block;
  color: #2c7a62;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.achievement-link:hover {
  color: #1a4a3a;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .case-studies-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .case-studies-grid {
    column-count: 1;
  }

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

  .case-study-card,
  .achievement-card {
    padding: 1.5rem;
  }

  .achievement-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ============================================
   TESTIMONIALS SECTION STYLES
=========================================== */

/* Hero Featured Testimonial */
.testimonial-hero {
  background-color: #0d3d2e;
  background: linear-gradient(135deg, #0d3d2e 0%, #0a2a20 100%);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(74, 155, 142, 0.25);
}

.testimonial-hero::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 30px;
  font-size: 200px;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-quote {
  color: #f0fdf4 !important;
  font-size: 1.35rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-quote strong {
  color: #ffd700;
  font-weight: 600;
}

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.author-details h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-details p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.hero-rating {
  font-size: 1.25rem;
  color: #ffd700;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.hero-link:hover {
  gap: 0.75rem;
  color: #ffd700;
}

/* Compact Testimonials Grid */
.testimonials-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.t-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #1a6b54;
}

.t-card.turned-around {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, var(--card-bg) 100%);
  border-color: rgba(245, 158, 11, 0.3);
}

.t-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.t-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.t-text strong {
  color: #2c7a62;
  font-weight: 600;
}

.t-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.t-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.t-rating {
  font-size: 0.9rem;
  color: #fbbf24;
}

.t-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #2c7a62;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.t-link:hover {
  gap: 0.6rem;
  color: #1a4a3a;
}

@media (max-width: 900px) {
  .testimonials-compact {
    grid-template-columns: 1fr;
  }

  .testimonial-hero {
    padding: 2rem;
  }

  .hero-quote {
    font-size: 1.15rem;
  }

  .hero-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .testimonial-hero {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .hero-quote {
    font-size: 1rem;
  }

  .t-card {
    padding: 1.5rem;
  }
}

/* ============================================
   FAQ SECTION STYLES
=========================================== */

/* FAQ Accordion Styles */
#faq {
  background: #fafbfc;
}

.faq-accordion {
  margin-top: 3rem;
}

.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-column:first-child {
  padding-right: 1rem;
  border-right: 1px solid #e2e8f0;
}

.faq-column:last-child {
  padding-left: 1rem;
}

.faq-item {
  flex: 1 1 auto;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #1a6b54;
  box-shadow: 0 4px 12px rgba(26, 107, 84, 0.08);
}

.faq-item.active {
  border-color: #1a6b54;
  box-shadow: 0 6px 16px rgba(26, 107, 84, 0.12);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.faq-question-btn:hover {
  background: #f8fafc;
}

.faq-question-btn:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #1a6b54;
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: #1a202c;
  line-height: 1.5;
  flex: 1;
}

.faq-chevron {
  flex-shrink: 0;
  color: #64748b;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: #1a6b54;
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content p {
  padding: 0 1.5rem 1.25rem;
  color: #475569;
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-answer-content strong {
  color: #1a6b54;
  font-weight: 600;
}

.faq-answer-content a {
  color: #1a6b54;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.faq-answer-content a:hover {
  border-bottom-color: #1a6b54;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .faq-column:first-child {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  
  .faq-column:last-child {
    padding-left: 0;
  }
  
  .faq-question-btn {
    padding: 1rem 1.25rem;
  }
  
  .faq-question {
    font-size: 0.95rem;
  }
  
  .faq-answer-content p {
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
  }
}