/* My Works Page Styles */

/* Write Method Section - Engaging Brand Voice Building */
.selected_works.section-title{
    color: rgb(18, 120, 197);
}
.write-method-section {
  background: linear-gradient(135deg, rgba(18, 120, 197, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.write-method-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(18, 120, 197, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.write-method-section .container {
  position: relative;
  z-index: 1;
}

.write-method-section .section-title {
  background: linear-gradient(135deg, rgb(18, 120, 197), rgb(0, 212, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from { filter: brightness(1); }
  to { filter: brightness(1.2); }
}

.write-method-section .section-subtitle-text {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  margin: 0 auto;
}

/* Phase Cards */
.phase-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(18, 120, 197, 0.2);
  border-radius: 20px;
  padding: 3rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(18, 120, 197, 0.1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  animation: cardReveal 0.8s ease forwards;
}

.phase-card:nth-child(1) {
  animation-delay: 0.2s;
}

.phase-card:nth-child(2) {
  animation-delay: 0.4s;
}

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

.phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgb(18, 120, 197), rgb(0, 212, 255));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.phase-card:hover::before {
  transform: scaleX(1);
}

.phase-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 60px rgba(18, 120, 197, 0.25);
  border-color: rgba(18, 120, 197, 0.4);
}

.phase-card--phase1 {
  background: linear-gradient(135deg, rgba(18, 120, 197, 0.05), rgba(255, 255, 255, 0.9));
}

.phase-card--phase2 {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 255, 255, 0.9));
}

.phase-header {
  margin-bottom: 1.5rem;
}

.phase-title h3 {
  background: linear-gradient(135deg, rgb(18, 120, 197), rgb(0, 212, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phase-title h3 i {
  font-size: 1.2rem;
  color: rgb(18, 120, 197);
  flex-shrink: 0;
  /* transition: transform 0.4s ease-out;
  transform-origin: center; */
}

/* .phase-title h3:hover i {
  transform: rotate(20deg) scale(1.2);
} */
.phase-title:hover h3 i  {
    transform: scale(1.25);
    transform-origin: right bottom;
    background: linear-gradient(135deg,  rgb(0, 212, 255), rgb(18, 120, 197));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.phase-title p {
  font-size: 0.95rem;
  color: var(--text-color);
  opacity: 0.7;
  margin: 0.2rem 0 0 0;
}

.phase-body {
  margin-top: 1rem;
}

.phase-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.phase-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phase-steps li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
  opacity: 0.8;
}

.phase-steps strong {
  color: rgb(18, 120, 197);
  font-weight: 600;
}

/* Dark mode adjustments */
[data-theme="dark"] .write-method-section {
  background: linear-gradient(135deg, rgba(18, 120, 197, 0.08) 0%, rgba(0, 212, 255, 0.08) 100%);
}

[data-theme="dark"] .phase-card {
  background: rgba(42, 42, 42, 0.95);
  border-color: rgba(18, 120, 197, 0.3);
}

[data-theme="dark"] .phase-card--phase1 {
  background: linear-gradient(135deg, rgba(18, 120, 197, 0.08), rgba(42, 42, 42, 0.9));
}

[data-theme="dark"] .phase-card--phase2 {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(42, 42, 42, 0.9));
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .phase-card {
    padding: 2.5rem;
  }

  .phase-header {
    margin-bottom: 1rem;
  }

  .phase-title h3 {
    font-size: 1.2rem;
  }

  .phase-title h3 i {
    font-size: 1rem;
  }
}

/* Dev Method Section */
.dev-method-section {
  background: linear-gradient(135deg, rgba(18, 120, 197, 0.03) 0%, rgba(0, 212, 255, 0.03) 100%);
}

.dev-method-section .section-title {
  background: linear-gradient(135deg, rgb(18, 120, 197), rgb(0, 212, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.method-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(18, 120, 197, 0.2);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(18, 120, 197, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: methodCardReveal 0.8s ease forwards;
}

.method-card:nth-child(1) {
  animation-delay: 0.1s;
}

.method-card:nth-child(2) {
  animation-delay: 0.3s;
}

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

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(18, 120, 197, 0.2);
  border-color: rgba(18, 120, 197, 0.4);
}

.method-icon, .method-title {
  font-size: 2.5rem;
  color: rgb(18, 120, 197);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.method-card:hover .method-icon, .method-card:hover .method-title {
  transform: scale(1.1);
  transform-origin: left;
  color: rgb(0, 212, 255);
}

.method-title {
  font-size: 1.3rem;
   font-weight: 700;
 /* margin-bottom: 0.5rem;
  color: var(--text-color); */
}

.method-description {
  font-size: 1rem;
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.method-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.method-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
  opacity: 0.85;
}

.method-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgb(18, 120, 197);
  font-weight: bold;
}

.method-list strong {
  color: rgb(18, 120, 197);
  font-weight: 600;
}

.tech-stack {
  font-size: 0.95rem;
  line-height: 1.6;
}

.tech-category {
  margin-bottom: 0.8rem;
  color: var(--text-color);
  opacity: 0.9;
}

.tech-category strong {
  color: rgb(18, 120, 197);
  font-weight: 600;
}

/* Works Section */
.works-section .work-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(18, 120, 197, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(18, 120, 197, 0.1);
  height: 100%;
  text-decoration: ;
}

.works-section .work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(18, 120, 197, 0.2);
  border-color: rgba(18, 120, 197, 0.4);
}

.work-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.work-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, rgba(18, 120, 197, 0.1), rgba(0, 212, 255, 0.1));
  color: rgb(18, 120, 197);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.work-placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.work-overlay {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
}

.work-overlay h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.work-overlay p {
  font-size: 0.95rem;
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.btn-view-project {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgb(18, 120, 197), rgb(0, 212, 255));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(18, 120, 197, 0.3);
}

.btn-view-project:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 120, 197, 0.4);
  color: white;
}

/* Dark mode for all sections */
[data-theme="dark"] .method-card,
[data-theme="dark"] .works-section .work-card {
  background: rgba(42, 42, 42, 0.95);
  border-color: rgba(18, 120, 197, 0.3);
}

[data-theme="dark"] .work-overlay {
  background: rgba(42, 42, 42, 0.95);
}

/* My Works CTA Button - Enhanced Styling */
.my-works-cta {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgb(18, 120, 197), rgb(0, 212, 255));
  color: white !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 32px rgba(18, 120, 197, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: cta-glow 3s ease-in-out infinite alternate;
}

.my-works-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.my-works-cta:hover::before {
  left: 100%;
}

.my-works-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(18, 120, 197, 0.6), 0 0 20px rgba(0, 212, 255, 0.4);
}

.my-works-cta i {
  margin-right: 0.5rem;
}

@keyframes cta-glow {
  0% {
    box-shadow: 0 8px 32px rgba(18, 120, 197, 0.4);
  }
  100% {
    box-shadow: 0 8px 32px rgba(18, 120, 197, 0.4), 0 0 15px rgba(0, 212, 255, 0.3);
  }
}

[data-theme="dark"] .my-works-cta {
  background: linear-gradient(135deg, rgb(18, 120, 197), rgb(0, 212, 255));
  box-shadow: 0 8px 32px rgba(18, 120, 197, 0.4);
}

[data-theme="dark"] .my-works-cta:hover {
  box-shadow: 0 12px 40px rgba(18, 120, 197, 0.6), 0 0 20px rgba(18, 120, 197, 0.4);
}

@media (max-width: 576px) {
  .my-works-cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .my-works-cta {
    animation: none;
    transition: none;
  }
  .my-works-cta::before {
    display: none;
  }
}

/* Swiper Styles */
.works-swiper-container {
  position: relative;
  padding-bottom: 60px;
  width: 100%;
}

.swiper.worksSwiper {
  padding-top: 0;
  padding-bottom: 20px;
}

.swiper-slide {
  display: flex;
  align-items: stretch;
  height: auto;
}

.swiper-slide .work-card {
  width: 100%;
  height: 100%;
}

/* Pagination - Blue dots */
.swiper-pagination {
  position: relative;
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background-color: rgb(18, 120, 197) !important;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* My Works Page Styles */

/* Write Method Section - Engaging Brand Voice Building */
.selected_works.section-title{
    color: rgb(18, 120, 197);
}
.write-method-section {
  background: linear-gradient(135deg, rgba(18, 120, 197, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.write-method-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(18, 120, 197, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.write-method-section .container {
  position: relative;
  z-index: 1;
}

.write-method-section .section-title {
  background: linear-gradient(135deg, rgb(18, 120, 197), rgb(0, 212, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from { filter: brightness(1); }
  to { filter: brightness(1.2); }
}

.write-method-section .section-subtitle-text {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  margin: 0 auto;
}

/* Phase Cards */
.phase-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(18, 120, 197, 0.2);
  border-radius: 20px;
  padding: 3rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(18, 120, 197, 0.1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  animation: cardReveal 0.8s ease forwards;
}

.phase-card:nth-child(1) {
  animation-delay: 0.2s;
}

.phase-card:nth-child(2) {
  animation-delay: 0.4s;
}

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

.phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgb(18, 120, 197), rgb(0, 212, 255));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.phase-card:hover::before {
  transform: scaleX(1);
}

.phase-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 60px rgba(18, 120, 197, 0.25);
  border-color: rgba(18, 120, 197, 0.4);
}

.phase-card--phase1 {
  background: linear-gradient(135deg, rgba(18, 120, 197, 0.05), rgba(255, 255, 255, 0.9));
}

.phase-card--phase2 {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 255, 255, 0.9));
}

.phase-header {
  margin-bottom: 1.5rem;
}

.phase-title h3 {
  background: linear-gradient(135deg, rgb(18, 120, 197), rgb(0, 212, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phase-title h3 i {
  font-size: 1.2rem;
  color: rgb(18, 120, 197);
  flex-shrink: 0;
  /* transition: transform 0.4s ease-out;
  transform-origin: center; */
}

/* .phase-title h3:hover i {
  transform: rotate(20deg) scale(1.2);
} */
.phase-title:hover h3 i  {
    transform: scale(1.25);
    transform-origin: right bottom;
    background: linear-gradient(135deg,  rgb(0, 212, 255), rgb(18, 120, 197));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.phase-title p {
  font-size: 0.95rem;
  color: var(--text-color);
  opacity: 0.7;
  margin: 0.2rem 0 0 0;
}

.phase-body {
  margin-top: 1rem;
}

.phase-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.phase-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phase-steps li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
  opacity: 0.8;
}

.phase-steps strong {
  color: rgb(18, 120, 197);
  font-weight: 600;
}

/* Dark mode adjustments */
[data-theme="dark"] .write-method-section {
  background: linear-gradient(135deg, rgba(18, 120, 197, 0.08) 0%, rgba(0, 212, 255, 0.08) 100%);
}

[data-theme="dark"] .phase-card {
  background: rgba(42, 42, 42, 0.95);
  border-color: rgba(18, 120, 197, 0.3);
}

[data-theme="dark"] .phase-card--phase1 {
  background: linear-gradient(135deg, rgba(18, 120, 197, 0.08), rgba(42, 42, 42, 0.9));
}

[data-theme="dark"] .phase-card--phase2 {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(42, 42, 42, 0.9));
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .phase-card {
    padding: 2.5rem;
  }

  .phase-header {
    margin-bottom: 1rem;
  }

  .phase-title h3 {
    font-size: 1.2rem;
  }

  .phase-title h3 i {
    font-size: 1rem;
  }
}

/* Dev Method Section */
.dev-method-section {
  background: linear-gradient(135deg, rgba(18, 120, 197, 0.03) 0%, rgba(0, 212, 255, 0.03) 100%);
}

.dev-method-section .section-title {
  background: linear-gradient(135deg, rgb(18, 120, 197), rgb(0, 212, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.method-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(18, 120, 197, 0.2);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(18, 120, 197, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: methodCardReveal 0.8s ease forwards;
}

.method-card:nth-child(1) {
  animation-delay: 0.1s;
}

.method-card:nth-child(2) {
  animation-delay: 0.3s;
}

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

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(18, 120, 197, 0.2);
  border-color: rgba(18, 120, 197, 0.4);
}

.method-icon, .method-title {
  font-size: 2.5rem;
  color: rgb(18, 120, 197);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.method-card:hover .method-icon, .method-card:hover .method-title {
  transform: scale(1.1);
  transform-origin: left;
  color: rgb(0, 212, 255);
}

.method-title {
  font-size: 1.3rem;
   font-weight: 700;
 /* margin-bottom: 0.5rem;
  color: var(--text-color); */
}

.method-description {
  font-size: 1rem;
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.method-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.method-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
  opacity: 0.85;
}

.method-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgb(18, 120, 197);
  font-weight: bold;
}

.method-list strong {
  color: rgb(18, 120, 197);
  font-weight: 600;
}

.tech-stack {
  font-size: 0.95rem;
  line-height: 1.6;
}

.tech-category {
  margin-bottom: 0.8rem;
  color: var(--text-color);
  opacity: 0.9;
}

.tech-category strong {
  color: rgb(18, 120, 197);
  font-weight: 600;
}

/* Works Section */
.works-section .work-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(18, 120, 197, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(18, 120, 197, 0.1);
  height: 100%;
}

.works-section .work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(18, 120, 197, 0.2);
  border-color: rgba(18, 120, 197, 0.4);
}

.work-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.work-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, rgba(18, 120, 197, 0.1), rgba(0, 212, 255, 0.1));
  color: rgb(18, 120, 197);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.work-placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.work-overlay {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
}

.work-overlay h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.work-overlay p {
  font-size: 0.95rem;
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.btn-view-project {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgb(18, 120, 197), rgb(0, 212, 255));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(18, 120, 197, 0.3);
}

.btn-view-project:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 120, 197, 0.4);
  color: white;
}

/* Dark mode for all sections */
[data-theme="dark"] .method-card,
[data-theme="dark"] .works-section .work-card {
  background: rgba(42, 42, 42, 0.95);
  border-color: rgba(18, 120, 197, 0.3);
}

[data-theme="dark"] .work-overlay {
  background: rgba(42, 42, 42, 0.95);
}

/* My Works CTA Button - Enhanced Styling */
.my-works-cta {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgb(18, 120, 197), rgb(0, 212, 255));
  color: white !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 32px rgba(18, 120, 197, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: cta-glow 3s ease-in-out infinite alternate;
}

.my-works-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.my-works-cta:hover::before {
  left: 100%;
}

.my-works-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(18, 120, 197, 0.6), 0 0 20px rgba(0, 212, 255, 0.4);
}

.my-works-cta i {
  margin-right: 0.5rem;
}

@keyframes cta-glow {
  0% {
    box-shadow: 0 8px 32px rgba(18, 120, 197, 0.4);
  }
  100% {
    box-shadow: 0 8px 32px rgba(18, 120, 197, 0.4), 0 0 15px rgba(0, 212, 255, 0.3);
  }
}

[data-theme="dark"] .my-works-cta {
  background: linear-gradient(135deg, rgb(18, 120, 197), rgb(0, 212, 255));
  box-shadow: 0 8px 32px rgba(18, 120, 197, 0.4);
}

[data-theme="dark"] .my-works-cta:hover {
  box-shadow: 0 12px 40px rgba(18, 120, 197, 0.6), 0 0 20px rgba(18, 120, 197, 0.4);
}

@media (max-width: 576px) {
  .my-works-cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .my-works-cta {
    animation: none;
    transition: none;
  }
  .my-works-cta::before {
    display: none;
  }
}

/* Swiper Styles */
.works-swiper-container {
  position: relative;
  padding-bottom: 60px;
  width: 100%;
}

.swiper.worksSwiper {
  padding-top: 0;
  padding-bottom: 20px;
}

.swiper-slide {
  display: flex;
  align-items: stretch;
  height: auto;
}

.swiper-slide .work-card {
  width: 100%;
  height: 100%;
}

/* Pagination - Blue dots */
.swiper-pagination {
  position: relative;
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background-color: rgb(18, 120, 197) !important;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: rgb(0, 212, 255) !important;
  opacity: 1;
}

.swiper-pagination-bullet:hover {
  opacity: 0.8;
}
.swiper-wrapper{
  padding: 40px 0;
}

.work-collab-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(18, 120, 197, 0.5);
  margin-left: 10px;
  vertical-align: middle;
  object-fit: contain;
}

.swiper-pagination-bullet-active {
  background-color: rgb(0, 212, 255) !important;
  opacity: 1;
}

.swiper-pagination-bullet:hover {
  opacity: 0.8;
}
.swiper-wrapper{
  padding: 40px 0;
}