@charset "UTF-8";

:root {
  --bg-color: #ffffff;
  --text-color: #1a1a1a;
  --text-muted: #666666;
  --section-bg-alt: #f9f9f9;
  --border-color: #eeeeee;
  --primary-color: #000000;
  --primary-color-text: #ffffff;
  --card-bg: #ffffff;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
  --font-sans: 'Montserrat', sans-serif;
  --font-serif: 'Prata', serif;
  --spacing-lg: 100px;
  --spacing-md: 60px;
}

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

body,
html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Skeleton Loading */
.skeleton,
.article-card.loading .article-content .article-footer,
.article-card.loading .article-content p,
.article-card.loading .article-content h3,
.article-card.loading .article-img {
  background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite linear;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Layout Helpers */
.section {
  padding: 0 var(--spacing-lg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.section.bg-alt {
  background: var(--section-bg-alt);
}

.section.footer {
  min-height: auto;
  padding: 2rem 0;
  text-align: center;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Global Responsive Adjustments */
@media (max-width: 768px) {
  :root {
    --spacing-lg: 30px;
    --spacing-md: 20px;
  }

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

  .section {
    padding: 2rem 5%;
    min-height: auto;
  }
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.4rem;
}

.social-icons span a {
  display: inline-block;
  color: #1a1a1a;
  font-size: 3rem;
  transition: all 0.3s ease;
}

.social-icons span a:hover {
  color: #999;
  transform: scale(0.9);
}

.social-icons img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.social-icons img:hover {
  opacity: 1;
}

/* Section Title */
.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }
}

/* Work Sample Item */
.work-sample-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0;
}

.work-sample-item .sample-content {
  flex: 1;
  padding-right: 2rem;
}

.work-sample-item .sample-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.work-sample-item .sample-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

.work-sample-item .sample-links {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.work-sample-item .sample-links a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
}

.work-sample-item .sample-links a::after {
  content: " ↗";
  font-size: 0.8rem;
  display: inline-block;
  margin-left: 0.2rem;
  vertical-align: middle;
}

.work-sample-item .sample-links a:hover {
  text-decoration: underline;
}

.work-sample-item:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .work-sample-item {
    flex-direction: column;
    gap: 0.6rem;
  }

  .work-sample-item .sample-content {
    padding-right: 0;
  }

  .work-sample-item .sample-content h4 {
    font-size: 1rem;
  }

  .work-sample-item .sample-links {
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
  }
}

/* Articles & Publications Carousel */
.articles-carousel-wrapper {
  position: relative;
  margin-top: 2rem;
}

.articles-carousel-wrapper:hover .carousel-controls .control-btn {
  opacity: 1;
  pointer-events: auto;
}

.articles-carousel-wrapper .carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 20;
  margin: 0;
  gap: 0;
  width: 100%;
  padding: 0 10px;
}

.articles-carousel-wrapper .carousel-controls .control-btn {
  opacity: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  display: none;
}

.articles-carousel-wrapper .carousel-controls .control-btn:hover {
  background: #000;
  color: #fff;
  transform: scale(1.1);
}

.articles-carousel-wrapper .carousel-controls .control-btn.disabled {
  opacity: 0.1 !important;
  pointer-events: none;
}

@media (max-width: 768px) {
  .articles-carousel-wrapper .carousel-controls {
    display: none;
  }
}

.articles-grid {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 1rem 10px 3rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.articles-grid::-webkit-scrollbar {
  display: none;
}

.articles-grid:active,
.articles-grid.active {
  cursor: grabbing;
}

@media (max-width: 768px) {
  .articles-grid {
    padding: 0;
    gap: 1rem;
  }
}

.article-card {
  flex: 0 0 calc(33.333% - 1.4rem);
  min-width: 320px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.article-card:hover {
  transform: translateY(-10px);
}

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

.article-card .article-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f5f5f5;
}

.article-card .article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card .article-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card .article-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .article-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.article-card .article-content .article-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #999;
  font-family: var(--font-sans);
}

.article-card .article-content .article-footer i {
  margin-right: 0.5rem;
}

.article-card.loading .article-content h3 {
  height: 1.4rem;
  width: 80%;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.article-card.loading .article-content p {
  height: 1rem;
  width: 100%;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.article-card.loading .article-content .article-footer {
  height: 0.85rem;
  width: 40%;
  border-radius: 4px;
}

@media (max-width: 480px) {
  .article-card {
    flex: 0 0 92%;
    min-width: auto;
  }
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999;
}

.whatsapp-fab:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  background: #128C7E;
}

/* Contact FAB */
.contact-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999;
}

.contact-fab:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Contact Modal */
.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 0;
}

.contact-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal-overlay.active .contact-modal-content {
  opacity: 1;
}

.contact-modal-overlay .contact-modal-content {
  background: #fff;
  width: 100%;
  max-width: 450px;
  padding: 2.5rem;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  margin: 0 30px 100px 0;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  max-height: 80vh;
  overflow-y: auto;
}

.contact-modal-overlay .close-modal-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
  line-height: 1;
}

.contact-modal-overlay .close-modal-btn:hover {
  color: #000;
}

.contact-modal-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.contact-modal-overlay p {
  color: #666;
  margin-bottom: 2rem;
}

.contact-modal-overlay .form-group {
  margin-bottom: 1.2rem;
}

.contact-modal-overlay .form-group.hp-field {
  display: none !important;
  visibility: hidden !important;
}

.contact-modal-overlay .form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-modal-overlay .form-group input,
.contact-modal-overlay .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-modal-overlay .form-group input:focus,
.contact-modal-overlay .form-group textarea:focus {
  outline: none;
  border-color: #000;
}

/* intl-tel-input overides */
.iti {
  width: 100%;
  display: block;
}

.iti__country-list {
  z-index: 1001;
}

.contact-modal-overlay .form-group textarea {
  resize: vertical;
}

.contact-modal-overlay .g-recaptcha {
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
}

.contact-modal-overlay .submit-btn {
  width: 100%;
  padding: 1rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.2s;
}

.contact-modal-overlay .submit-btn:hover {
  background: #333;
}

.contact-modal-overlay .form-status {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

.contact-modal-overlay .form-status.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.contact-modal-overlay .form-status.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-modal-overlay .contact-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: #999;
  font-size: 0.9rem;
}

.contact-modal-overlay .contact-divider::before,
.contact-modal-overlay .contact-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #eee;
}

.contact-modal-overlay .contact-divider span {
  padding: 0 10px;
}

.contact-modal-overlay .whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  background-color: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.2s;
  gap: 10px;
}

.contact-modal-overlay .whatsapp-btn i {
  font-size: 1.4rem;
}

.contact-modal-overlay .whatsapp-btn:hover {
  background-color: #128C7E;
}

@media (max-width: 480px) {
  .contact-modal-overlay {
    align-items: center;
    justify-content: center;
  }

  .contact-modal-overlay .contact-modal-content {
    padding: 1.5rem;
    width: 90%;
    margin: 0;
  }
}



/* OTP Section Styles */
.otp-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  animation: fadeIn 0.3s ease;
}

.verify-btn {
  width: 100%;
  padding: 0.8rem;
  background: #25D366;
  /* Green to indicate verification */
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.verify-btn:hover {
  background: #128C7E;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

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

/* --- Hero Section --- */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.background-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/background.png");
  background-size: cover;
  background-position: center bottom;
  z-index: 1;
  mask-image: linear-gradient(to top, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
}

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

.logo-emblem {
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  .logo-emblem {
    width: 100px;
    height: 100px;
  }
}

.circular-text {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: rotate 10s linear infinite;
}

.central-logo {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  display: inline-block;
}

@media (max-width: 480px) {
  .central-logo {
    font-size: 36px !important;
  }
}

.main-heading {
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 1.5rem !important;
    letter-spacing: 0.1em;
  }
}

/* --- About Section --- */
.about-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .about-text h2 {
    font-size: 1.6rem;
  }
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.portrait-wrapper img {
  width: 100%;
  filter: grayscale(100%);
  border-radius: 4px;
  mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

/* --- Stats & Logos --- */
.stats-grid {
  margin-bottom: 4rem;
  text-align: center;
}

.stats-grid h3 {
  font-size: 6rem;
  font-weight: 400;
  display: inline-block;
  margin-right: 1rem;
}

.stats-grid h3 span {
  font-size: 2rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .stats-grid h3 {
    font-size: 3.5rem;
  }
}

.stats-grid span {
  font-size: 4rem;
  font-weight: 300;
  line-height: 100%;
}

@media (max-width: 768px) {
  .stats-grid span {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    margin-bottom: 2rem;
  }
}

.stats-description {
  max-width: 800px;
  margin-bottom: 5rem;
  color: var(--text-muted);
}

.logo-carousel-container {
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  overflow: hidden;
  padding: 2rem 0;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.logo-row:hover {
  animation-play-state: paused;
}

.logo-row img {
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  cursor: pointer;
}

.logo-row img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- Achievements --- */
.achivement {
  margin-top: 4rem;
}

.achivement h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 2rem;
}

.carousel-wrapper {
  position: relative;
}

.achivement-row {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 2rem;
  align-items: flex-start;
}

.achivement-row::-webkit-scrollbar {
  display: none;
}

.achivement-row img {
  flex: 0 0 calc((100% - 2rem) / 1.5);
  height: auto;
  object-fit: contain;
  scroll-snap-align: center;
  padding: 5px;
}

@media (max-width: 768px) {
  .achivement-row img {
    flex: 0 0 calc((100% - 1rem) / 2.2);
    width: 85%;
  }
}

@media (max-width: 768px) {
  .achivement-row {
    gap: 1rem;
  }
}

/* --- Skills & Tools --- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.skill-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.skill-item p {
  color: var(--text-muted);
}

.tools .section-title {
  font-size: 2.5rem;
  margin: 4rem 0;
}

.tools .tools-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 2.5rem 1rem;
  text-align: center;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .tools .tools-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem 1rem;
  }
}

@media (max-width: 480px) {
  .tools .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tools .tool-icon {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tools .tool-icon:hover {
  transform: translateY(-8px);
}

.tools .tool-icon img {
  width: 100%;
  height: 100%;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 0.8rem;
  border-radius: 18px;
}

@media (max-width: 480px) {
  .tools .tool-icon img {
    width: 70px;
    height: 70px;
  }
}

.tools .tool-icon span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.01em;
}

/* --- Work Experience --- */
.timeline-item {
  margin-bottom: 4rem;
  border-left: 2px solid #eee;
  padding-left: 2rem;
}

.work-ex-detail {
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .work-ex-detail {
    margin-top: 0;
  }
}

.work-ex-detail .work-ex-item {
  margin-bottom: 6rem;
  position: relative;
}

@media (max-width: 768px) {
  .work-ex-detail .work-ex-item {
    margin-bottom: 2.5rem;
  }
}

.work-ex-detail .work-ex-item .ex-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .work-ex-detail .work-ex-item .ex-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.work-ex-detail .work-ex-item .ex-header .company-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.work-ex-detail .work-ex-item .ex-header .company-info .company-logo-circle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-ex-detail .work-ex-item .ex-header .company-info .company-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 480px) {
  .work-ex-detail .work-ex-item .ex-header .company-info .company-logo-circle {
    width: 35px;
    height: 35px;
  }
}

.work-ex-detail .work-ex-item .ex-header .company-info .title-group h3 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.work-ex-detail .work-ex-item .ex-header .company-info .title-group h3 a {
  text-decoration: none;
  color: inherit;
}

.work-ex-detail .work-ex-item .ex-header .company-info .title-group h3 a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .work-ex-detail .work-ex-item .ex-header .company-info .title-group h3 {
    font-size: 1rem;
  }
}

.work-ex-detail .work-ex-item .ex-header .company-info .title-group p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.work-ex-detail .work-ex-item .ex-header .duration {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .work-ex-detail .work-ex-item .ex-header .duration {
    margin-top: 0;
    font-size: 0.9rem;
  }
}

.work-ex-detail .work-ex-item .role-overview {
  margin-bottom: 2.5rem;
}

.work-ex-detail .work-ex-item .role-overview h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.work-ex-detail .work-ex-item .role-overview p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.work-ex-detail .work-ex-item .key-responsibilities h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.work-ex-detail .work-ex-item .key-responsibilities ol {
  list-style: none;
  counter-reset: resp-counter;
  padding-left: 0;
}

.work-ex-detail .work-ex-item .key-responsibilities ol>li {
  counter-increment: resp-counter;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.work-ex-detail .work-ex-item .key-responsibilities ol>li::before {
  content: counter(resp-counter) ". ";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #000;
}

.work-ex-detail .work-ex-item .key-responsibilities ol>li .resp-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
  display: block;
  margin-bottom: 0.5rem;
}

.work-ex-detail .work-ex-item .key-responsibilities ol>li ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
}

.work-ex-detail .work-ex-item .key-responsibilities ol>li ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
  color: #444;
  font-size: 1.05rem;
}

.work-ex-detail .work-ex-item .key-responsibilities ol>li ul li::before {
  content: "•";
  position: absolute;
  left: 0.2rem;
  color: #666;
}

.work-ex-detail .work-ex-item.work-ex-item:last-child {
  margin-bottom: 0;
}

/* --- Contact CTA --- */
.contact-cta {
  min-height: auto;
  background: #fff;
  padding: 0 !important;
  overflow: hidden;
  margin-top: 6rem;
  width: 100%;
  max-width: none;
  display: block;
}

.contact-cta .cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  align-items: center;
  width: 100%;
  max-width: none;
}

@media (max-width: 768px) {
  .contact-cta .cta-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 3rem;
  }
}

.contact-cta .cta-text {
  padding: 4rem 0 4rem 10%;
}

@media (max-width: 768px) {
  .contact-cta .cta-text {
    padding: 2rem 1rem;
  }
}

.contact-cta .cta-text h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #000;
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .contact-cta .cta-text h2 {
    font-size: 2.5rem;
  }
}

.contact-cta .cta-text p {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 3.5rem;
  max-width: 550px;
  line-height: 1.5;
}

.contact-cta .cta-text .cta-buttons {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .contact-cta .cta-text .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .contact-cta .cta-text .cta-buttons {
    gap: 1rem;
  }
}

.contact-cta .cta-text .cta-buttons .cta-btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid #000;
}

.contact-cta .cta-text .cta-buttons .cta-btn.primary {
  background: #000;
  color: #fff;
}

.contact-cta .cta-text .cta-buttons .cta-btn.primary:hover {
  background: #333;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-cta .cta-text .cta-buttons .cta-btn.secondary {
  background: #000;
  color: #fff;
}

.contact-cta .cta-text .cta-buttons .cta-btn.secondary:hover {
  background: #333;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
  .contact-cta .cta-text .cta-buttons .cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }
}

.contact-cta .cta-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .contact-cta .cta-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
}

.contact-cta .cta-image-wrapper .cta-arch {
  position: absolute;
  bottom: 0;
  width: 100%;
  aspect-ratio: 1/1.2;
  background-color: #ffccd5;
  border-radius: 200px 200px 0 0;
  z-index: 1;
  transition: background-color 0.8s ease;
}

.contact-cta .cta-image-wrapper .cta-person {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: -1px;
}

@media (max-width: 768px) {
  .contact-cta {
    padding: 4rem 0;
  }
}

/* --- Footer --- */
.footer {
  padding: 6rem 0 4rem;
  min-height: auto;
  text-align: center;
}

.footer .footer-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer .footer-divider::before,
.footer .footer-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.footer .footer-divider .footer-logo-emblem {
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.footer .footer-divider .footer-logo-emblem .circular-text {
  letter-spacing: 0.65rem;
  font-size: 1.2rem;
}

.footer .footer-divider .footer-logo-emblem .central-logo {
  font-size: 32px;
}

.footer .footer-social-links {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.footer .footer-social-links a {
  color: #000;
  font-size: 2.2rem;
  transition: transform 0.3s ease;
}

.footer .footer-social-links a:hover {
  transform: scale(1.1);
}

.footer .footer-contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-sans);
  color: #333;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .footer .footer-contact-info {
    flex-direction: column;
    gap: 1rem;
  }
}

.footer .footer-contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}

.footer .footer-contact-info .contact-item i {
  font-size: 1.2rem;
}

.footer .footer-contact-info .contact-item:hover {
  color: #000;
  text-decoration: underline;
}

.footer .footer-contact-info .divider {
  color: #ccc;
}

@media (max-width: 768px) {
  .footer .footer-contact-info .divider {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */