/* DESIGN SYSTEM - Color Palette & Variables (Start) ====================================== */
:root {
  --bg-primary: #0f1418;
  --bg-secondary: #151b21;
  --bg-surface: #1b232b;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --accent-primary: #17a2b8;
  --accent-glow: rgba(23, 162, 184, 0.25);
  --accent-glow-strong: rgba(23, 162, 184, 0.4);
  --text-primary: #e6f1f5;
  --text-secondary: #9fb3c1;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

/* DESIGN SYSTEM - Color Palette & Variables (End) ========================================== */

.cardManual {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-subtle);
}
.cardManual:hover {
  box-shadow: 0 8px 24px rgba(23, 162, 184, 0.15);
  transform: translateY(-2px);
}
.cardB {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
  border-radius: 8px;
  border-left: 3px solid var(--accent-primary);
}
.cardB:hover {
  box-shadow: 0 8px 24px rgba(23, 162, 184, 0.15);
  transform: translateX(4px);
}

.cardProjectTypes {
  background-color: var(--bg-surface) !important;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.cardProjectTypes:hover {
  box-shadow: 0 16px 32px rgba(23, 162, 184, 0.2);
  transform: translateY(-4px);
  border-color: rgba(23, 162, 184, 0.2);
}

.cardProjectTypesTitle {
  font-size: 22px !important;
  font-weight: 500;
  color: var(--text-primary) !important;
}

.cardProjectTypesTitle:hover {
  color: var(--accent-primary) !important;
  cursor: pointer;
  text-decoration: none;
}

.cardProjectTypes div div.textTruncate {
  color: var(--text-secondary);
}

.card-glow-info {
  border-radius: 0.5rem;
  box-shadow: 0 0 16px var(--accent-glow);
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
  border: 1px solid rgba(23, 162, 184, 0.15);
}

.card-glow-info:hover {
  box-shadow: 0 0 24px rgba(23, 162, 184, 0.5);
  transform: translateY(-2px);
}

.textTruncate {
  line-height: 1.6 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  color: var(--text-secondary);
}

.alertCard {
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
}

.successAlert {
  border-left: 3.5px solid #198754 !important;
}

ul.nav.nav-tabs li a:not(.active)  {
  color: gray !important;
}
ul.nav.nav-tabs li a.active {
  border-top: 4px solid #198754 !important;  
}



/* ProfessionalPortfolio Manual Styles (Start) */
/* additionalClass is required so that, if e hover ang item which has a 3px border-left, dili mo shake ang item */
a.additionalClass { 
  border-left: 3px solid #1d2124 !important;
}
a.active_item {
  background-color: #1d2124 !important;
  border-left: 3px solid #17a2b8 !important;
}
a.list-group-item:hover {
  background-color: #1d2124 !important;
  border-left: 3px solid #17a2b8 !important;
  color: #6c757d !important;
}

body {
  overflow-x: hidden !important;
  background-color: var(--bg-primary) !important;
  color: var(--text-primary);
  font-family: var(--font-stack);
}

.bg-dark-secondary {
  height: auto !important;
  background-color: var(--bg-secondary) !important;
}

/* Override Bootstrap bg-primary to ensure dark background */
body.bg-primary,
.bg-primary {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
}

body.bg-dark-secondary {
  background-color: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
}

/* Main page container sections - alternate between dark and secondary backgrounds */
.mainPage_Con {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  position: relative;
  overflow: hidden;
}

.mainPage_Con:nth-of-type(even) {
  background-color: var(--bg-secondary) !important;
}

/* Gradient overlay for odd sections */
.mainPage_Con:nth-of-type(odd)::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(23, 162, 184, 0.22) 0%, rgba(23, 162, 184, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 9s ease-in-out infinite;
  filter: blur(50px);
  z-index: 0;
}

/* Gradient overlay for even sections */
.mainPage_Con:nth-of-type(even)::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(23, 162, 184, 0.2) 0%, rgba(23, 162, 184, 0.06) 35%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow-reverse 10s ease-in-out infinite;
  filter: blur(55px);
  z-index: 0;
}

.bg-aesthetic {
  height: auto !important;
  background-color: #fff3e4 !important;
}

.philosophy_picture_con {
  background-image: url('/assets/img/materials/philosophy_sample.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 505px;
}

.instagram_picture_con {
  background-image: url('/assets/img/materials/instagram_photo_sample.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 505px;
}

.brands {
  transition: transform .2s; 
}

.brands:hover {
  -ms-transform: scale(1.05); /* IE 9 */
  -webkit-transform: scale(1.05); /* Safari 3-8 */
  transform: scale(1.07);
}

.brandHover {
  -ms-transform: scale(1.05); /* IE 9 */
  -webkit-transform: scale(1.05); /* Safari 3-8 */
  transform: scale(1.02);
}

.skillsetHover {
  -ms-transform: scale(1.40); /* IE 9 */
  -webkit-transform: scale(1.40); /* Safari 3-8 */
  transform: scale(1.40);
}

.text-cyan {
  color: var(--accent-primary) !important;
}

.footer-primary-sections:hover {
  color: var(--accent-primary) !important;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.textHover:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* edit icon - professional summary */
.iconHover:hover {
  color: var(--accent-primary) !important;
  cursor: pointer;
  transform: scale(1.15);
  transition: var(--transition-smooth);
}

.bg-purple {
  height: auto !important;
  background-color: #fbe4ff !important;
}

.overflowTest {
  width: auto;
  height: 600px;
  overflow-y: scroll;
  scrollbar-color: #000 transparent;
  scrollbar-width: thin;
}

.btn_back2Top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: none;
  background-color: var(--bg-surface) !important;
  border: 1px solid var(--border-subtle) !important;
  color: var(--accent-primary) !important;
  transition: var(--transition-smooth);
  border-radius: 8px;
}

.btn_back2Top:hover {
  background-color: rgba(23, 162, 184, 0.1) !important;
  border-color: var(--accent-primary) !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(23, 162, 184, 0.25);
}

.progress-container {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  position: fixed;
  z-index: 1000;
}

.progress-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), rgba(23, 162, 184, 0.4));
  width: 0%;
  position: fixed;
  z-index: 1000;
  box-shadow: 0 0 16px var(--accent-glow);
}

.pointer {
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pointer:hover {
  color: var(--accent-primary) !important;
}


/* Page Load Content - Main Text Animation (Start) */
.drop-in {
  animation: drop-in 1s cubic-bezier(0.34, 1.56, 0.64, 1) 200ms backwards;
}

.drop-in-2 {
  animation: drop-in 1000ms cubic-bezier(0.34, 1.56, 0.64, 1) 1000ms backwards;
}

@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(-100px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translate(0px);
    filter: blur(0px);
  }
}

/* Page Load Content - Main Text Animation (End) */

/* Animations (start) */

.leftToRight1_5 {
  position: relative;
  animation: left_to_right cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-duration: 1.2s;
}

.leftToRight2_3 {
  position: relative;
  animation: left_to_right cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-duration: 1.8s;
}

.bottomToTop {
  position: relative;
  animation: bottom_to_top cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-duration: 1.6s;
}

@keyframes left_to_right {
  from {
    left: -200px;
    opacity: 0;
    filter: blur(10px);
  }

  to {
    left: 0px;
    opacity: 1;
    filter: blur(0px);
  }
}

@keyframes bottom_to_top {
  from {
    bottom: -100px;
    opacity: 0;
    filter: blur(8px);
  }

  to {
    bottom: 0px;
    opacity: 1;
    filter: blur(0px);
  }
}

/* Animations (end) */


/* Text Area auto-resize height (Start) */
.textarea {
  display: block;
  width: 100%;
  overflow: hidden;
  resize: both;
  min-height: 40px;
  line-height: 20px;
  border: 1px solid #6c757d;
  font-size: 20px;
  padding-top: 15px;
  padding-bottom: 18px;
}

/* disable element using css */
.disable_span {
  pointer-events: none;
}

.hidden_ {
  display: none !important;
}

.circle_image {
  border-radius: 50%;
}

/* Text Area auto-resize height (End) */

.textColor1 {
  color: var(--accent-primary);
}


/* Hero Section (start) =========================================== */

/* Enhanced Hero Background with Prominent Gradients */
.parallax {
  position: relative;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #0a0d12 25%, #1a1f35 60%, rgba(23, 162, 184, 0.08) 100%);
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(23, 162, 184, 0.1);
}

/* Large floating gradient orb - bottom right */
.parallax::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(23, 162, 184, 0.25) 0%, rgba(75, 192, 192, 0.08) 30%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 12s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  filter: blur(60px);
  will-change: transform;
}

/* Additional accent gradient orb - top left */
.parallax::after {
  content: '';
  position: absolute;
  top: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(23, 162, 184, 0.15) 0%, rgba(13, 202, 240, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow-reverse 15s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  filter: blur(50px);
  will-change: transform;
}

@keyframes float-slow {
  0% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(-25px) translateX(-15px); }
  50% { transform: translateY(-40px) translateX(-30px); }
  75% { transform: translateY(-20px) translateX(-10px); }
  100% { transform: translateY(0px) translateX(0px); }
}

@keyframes float-slow-reverse {
  0% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(20px) translateX(25px); }
  50% { transform: translateY(30px) translateX(40px); }
  75% { transform: translateY(15px) translateX(20px); }
  100% { transform: translateY(0px) translateX(0px); }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}

.navbar {
  background-color: rgba(15, 20, 24, 0.4) !important;
  border-bottom: 1px solid rgba(23, 162, 184, 0.15) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 30px rgba(23, 162, 184, 0.1);
}

.navbar-custom {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.navbar-brand {
  color: var(--text-primary) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-stack);
  transition: var(--transition-smooth);
}

.navbar-brand:hover {
  filter: drop-shadow(0 2px 8px rgba(23, 162, 184, 0.3));
}

.nav-link-custom {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 15px;
  margin-left: 1.5rem;
  transition: var(--transition-smooth);
  position: relative;
  font-family: var(--font-stack);
  letter-spacing: 0.2px;
}

.nav-link-custom:not(.dropdown-toggle)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), #4bc0c0);
  transition: width 0.3s ease;
}

.nav-link-custom:not(.dropdown-toggle):hover {
  color: var(--accent-primary) !important;
}

.nav-link-custom:not(.dropdown-toggle):hover::after {
  width: 100%;
}

.navbar-toggler-custom {
  border-color: rgba(23, 162, 184, 0.3) !important;
  padding: 0.4rem 0.75rem;
  transition: var(--transition-smooth);
}

.navbar-toggler-custom:hover {
  border-color: var(--accent-primary) !important;
}

.navbar-toggler-custom:focus {
  box-shadow: 0 0 0 0.25rem rgba(23, 162, 184, 0.25) !important;
}

/* Responsiveness */
@media (max-width: 991px) {
  .nav-link-custom {
    margin-left: 0;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    transition: var(--transition-smooth);
  }

  .nav-link-custom:hover {
    border-left-color: var(--accent-primary);
    background: rgba(23, 162, 184, 0.1);
  }

  .nav-link-custom::after {
    display: none;
  }
}

.greetingsText {
  color: var(--accent-primary);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
  font-family: var(--font-stack);
}

.self-introduction-text {
  font-size: 35px;
  line-height: 1.3;
  color: var(--text-primary);
  font-weight: 600;
  text-shadow: 0 4px 20px rgba(23, 162, 184, 0.2);
  font-family: var(--font-stack);
}

.self-introduction-text .text-info {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #4bc0c0 50%, rgba(23, 162, 184, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(23, 162, 184, 0.3));
}

.services-general-text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-family: var(--font-stack);
}

.textTag_service {
  color: var(--accent-primary);
  font-weight: 600;
  opacity: 0.9;
}

.serviceTag {
  color: var(--text-primary);
  font-family: var(--font-stack);
  font-size: 20px;
  opacity: 0.7;
}

.services_container {
  margin-top: 25px;
  padding-top: 20px;
  padding-left: 30px;
  border-left: 2px solid rgba(23, 162, 184, 0.3);
}

.btn-modern {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #4bc0c0 100%);
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 32px !important;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--bg-primary) !important;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(23, 162, 184, 0.3);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-stack);
}

.btn-modern:hover {
  background: linear-gradient(135deg, #4bc0c0 0%, var(--accent-primary) 100%);
  box-shadow: 0 12px 32px rgba(23, 162, 184, 0.5);
  transform: translateY(-2px);
  color: var(--bg-primary) !important;
  text-decoration: none;
}

.btn-modern:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(23, 162, 184, 0.3);
}

.btn-send {
  margin-top: 28px;
}

.btn-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.customBtn:hover {
  background-color: rgba(23, 162, 184, 0.1) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(23, 162, 184, 0.25);
}

/* Rersponsiveness purposes ---> Medium-sized screens (sm) */
@media (min-width: 992px) {
  .greetingsText {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .self-introduction-text {
    font-size: 50px;
    line-height: 1.25;
    font-family: var(--font-stack);
  }

  .services-general-text {
    font-size: 20px;
  }

  .textTag_service {
    color: var(--accent-primary);
    font-weight: 700;
  }

  .serviceTag {
    color: var(--text-primary);
    font-family: var(--font-stack);
    font-size: 26px;
  }

  .customBtn {
    border-radius: 8px;
    padding: 14px 32px !important;
    font-weight: 600;
  }
}

/* Hero Section (end) =========================================== */


/* Profession Summary (start) =================================== */
.ps-title-container {
  text-align: center;
}

.ps-title-container h6 {
  background: linear-gradient(135deg, var(--accent-primary), #4bc0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px !important;
  filter: drop-shadow(0 2px 6px rgba(23, 162, 184, 0.25));
}

.profession-summary-text {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

/* Rersponsiveness purposes ---> Medium-sized screens (sm) */
@media (min-width: 992px) {
  .profession-summary-text {
    font-size: 1.125rem;
    line-height: 1.9;
    font-weight: 400;
  }
}
/* Profession Summary (end) ===================================== */

/* High Quality Product (start) ================================= */
.hqp-title-container {
  text-align: center;
}

.high-quality-product-title {
  font-size: 32px;
  background: linear-gradient(135deg, var(--text-secondary) 0%, var(--accent-primary) 50%, #4bc0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: -1px;
  filter: drop-shadow(0 4px 12px rgba(23, 162, 184, 0.2));
  position: relative;
  z-index: 1;
}

.hq-text {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
}

.hq-text .text-info {
  color: var(--accent-primary) !important;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(23, 162, 184, 0.4);
}

/* Icon styling for high quality product section */
.hqp-title-container .text-secondary {
  color: var(--accent-primary) !important;
  filter: drop-shadow(0 0 8px rgba(23, 162, 184, 0.3));
  transition: var(--transition-smooth);
}

.hqp-title-container .text-secondary:hover {
  filter: drop-shadow(0 0 16px rgba(23, 162, 184, 0.6));
  transform: scale(1.05);
}

/* Rersponsiveness purposes ---> Medium-sized screens (sm) */
@media (min-width: 992px) {
  .hqp-title-container {
    text-align: start;
  }

  .hq-text {
    font-size: 1.1rem;
    line-height: 1.9;
    font-weight: 400;
  }
  
  .high-quality-product-title {
    font-size: 52px;
    font-weight: 700;
  }
}
/* High Quality Product (end) =================================== */

/* Sample Projects (start) ====================================== */
.projects-title {
  font-size: 32px;
  background: linear-gradient(135deg, var(--text-secondary) 0%, var(--accent-primary) 50%, #4bc0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  filter: drop-shadow(0 4px 12px rgba(23, 162, 184, 0.2));
  position: relative;
  z-index: 1;
}

.project-case-study-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.project-preview-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.project-preview-img:hover {
  transform: scale(1.02);
}

.project-preview-title {
  font-size: 24px;
  background: linear-gradient(135deg, var(--accent-primary), #4bc0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  filter: drop-shadow(0 2px 8px rgba(23, 162, 184, 0.2));
  position: relative;
  z-index: 1;
}

.pp-quick-overview {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.readMoreBtn {
  border-radius: 8px;
  padding: 10px 24px !important;
  font-weight: 500;
  transition: var(--transition-smooth);
  border: 1.5px solid var(--accent-primary);
  background: linear-gradient(135deg, transparent, rgba(23, 162, 184, 0.05)) !important;
  color: var(--accent-primary) !important;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 16px rgba(23, 162, 184, 0.15);
}

.readMoreBtn:hover {
  background: linear-gradient(135deg, rgba(23, 162, 184, 0.15), rgba(23, 162, 184, 0.08)) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23, 162, 184, 0.4);
  border-color: #4bc0c0;
}

/* Rersponsiveness purposes ---> Medium-sized screens (sm) */
@media (min-width: 992px) {
  .projects-title {
    font-size: 52px;
    font-weight: 700;
  }

  .project-case-study-intro {
    font-size: 1.1rem;
    line-height: 1.9;
  }

  .project-preview-title {
    font-size: 28px;
    font-weight: 700;
  }

  .pp-quick-overview {
    font-size: 1.1rem;
    line-height: 1.9;
  }
}
/* Sample Projects (end) ======================================== */

/* Technical Skills (start) ===================================== */
.ts-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.tech-skill-title {
  font-size: 32px;
  background: linear-gradient(135deg, var(--text-secondary) 0%, var(--accent-primary) 50%, #4bc0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  filter: drop-shadow(0 4px 12px rgba(23, 162, 184, 0.2));
  position: relative;
  z-index: 1;
}

.ts-title-container {
  text-align: center;
}

/* Carousel styling */
.carousel {
  position: relative;
  z-index: 1;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  background-color: transparent;
  position: relative;
  z-index: 1;
  display: none;
  width: 100%;
}

.carousel-item.active {
  display: block;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 10;
  opacity: 1;
  width: 40px;
  height: 40px;
  background: rgba(21, 27, 33, 0.8);
  border: 2px solid rgba(23, 162, 184, 0.3);
  border-radius: 50%;
  margin: auto;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(23, 162, 184, 0.2);
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(23, 162, 184, 0.4);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: none;
  background-image: none;
  width: 10px;
  height: 10px;
  border: solid var(--accent-primary);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  opacity: 1;
  transition: var(--transition-smooth);
}

.carousel-control-prev-icon {
  transform: rotate(135deg);
}

.carousel-control-next-icon {
  transform: rotate(-45deg);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  border-color: #fff;
  transform: scale(1.1);
}

.carousel-control-prev:hover .carousel-control-prev-icon {
  transform: rotate(135deg) scale(1.1);
}

.carousel-control-next:hover .carousel-control-next-icon {
  transform: rotate(-45deg) scale(1.1);
}

/* Tech Stack Carousel Responsive Styles */
.carousel-slide-container {
  min-height: 350px;
  height: auto;
  padding-bottom: 2rem;
}

.skill-name-text {
  font-size: 0.75rem;
  line-height: 1.2;
  word-break: break-word;
  hyphens: auto;
}

/* Rersponsiveness purposes ---> Medium-sized screens (sm) */
@media (min-width: 992px) {
  .ts-intro {
    font-size: 1.1rem;
  }

  .tech-skill-title {
    font-size: 52px;
    font-weight: 700;
  }

  .ts-title-container {
    text-align: start;
  }
}

/* Mobile carousel fixes */
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }

  /* Tech Stack Cards Mobile Styles */
  .carousel-slide-container {
    min-height: 300px;
    padding-bottom: 1rem;
  }

  .skill-name-text {
    font-size: 0.65rem;
    line-height: 1.1;
  }

  .card-glow-info {
    padding: 0.5rem 0.75rem !important;
    margin: 0.25rem 0 !important;
  }

  .card-glow-info img {
    max-height: 40px !important;
  }
}
/* Technical Skills (end) ======================================= */

/* Services Section (start) ===================================== */
.services-header-wrapper {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.services-header {
  display: block;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.services-title {
  font-size: 42px;
  background: linear-gradient(135deg, var(--text-secondary) 0%, var(--accent-primary) 50%, #4bc0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(23, 162, 184, 0.2));
}

.services-subtitle {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(21, 27, 33, 0.95);
  border: 2px solid rgba(23, 162, 184, 0.15);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: opacity, transform;
}

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

.service-card:nth-child(2) {
  animation-delay: 0.25s;
}

.service-card:nth-child(3) {
  animation-delay: 0.4s;
}

.service-card:nth-child(4) {
  animation-delay: 0.55s;
}

.service-card:nth-child(5) {
  animation-delay: 0.7s;
}

.service-card:nth-child(6) {
  animation-delay: 0.85s;
}

.service-card:hover {
  border-color: rgba(23, 162, 184, 0.5);
  background: rgba(21, 27, 33, 0.98);
  box-shadow: 0 0 30px rgba(23, 162, 184, 0.4), 0 16px 48px rgba(23, 162, 184, 0.15);
  transform: translateY(-8px) scale(1.01);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary), #4bc0c0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--bg-primary);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(23, 162, 184, 0.3);
}

.service-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: var(--font-stack);
}

.service-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-family: var(--font-stack);
}

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

.service-features li {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  will-change: transform, color;
}

.service-card:hover .service-features li {
  color: var(--text-primary);
  transform: translateX(6px);
}

.service-features li:nth-child(1) { transition-delay: 0.05s; }
.service-features li:nth-child(2) { transition-delay: 0.1s; }
.service-features li:nth-child(3) { transition-delay: 0.15s; }
.service-features li:nth-child(4) { transition-delay: 0.2s; }

.feature-dot {
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 16px;
}

/* Responsiveness purposes ---> Tablet screens (md) */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .services-title {
    font-size: 36px;
  }
}

/* Responsiveness purposes ---> Small screens (sm) */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-title {
    font-size: 28px;
  }

  .services-header-wrapper {
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  /* Tech Stack Carousel Tablet Styles */
  .carousel-slide-container {
    min-height: 280px;
    padding-bottom: 0.75rem;
  }

  .skill-name-text {
    font-size: 0.7rem;
    line-height: 1.1;
  }

  .card-glow-info {
    padding: 0.375rem 0.625rem !important;
    margin: 0.1875rem 0 !important;
  }

  .card-glow-info img {
    max-height: 38px !important;
  }

  /* Tablet Carousel Controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }
}
/* Services Section (end) ======================================= */

/* Sample Project Types (start) ================================= */
.st-header-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.st-header {
  display: block;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.st-sub-text {
  font-size: 32px;
  background: linear-gradient(135deg, var(--text-secondary) 0%, var(--accent-primary) 50%, #4bc0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
  display: block;
}

.st-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.st-cards-container .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.st-cards-container .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.st-cards-container .readMoreBtn {
  align-self: flex-start;
}

.no-project-type-text {
  text-align: center;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  padding: 3rem 0;
}

.project-type-desc {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

/* Responsiveness purposes ---> Medium-sized screens (sm) */
@media (min-width: 992px) {
  .st-header-wrapper {
    text-align: start;
    margin-bottom: 3rem;
  }

  .st-header {
    text-align: start;
  }

  .st-sub-text {
    font-size: 52px;
    font-weight: 700;
    text-align: start;
  }

  .project-type-desc {
    font-size: 1.1rem;
    font-weight: 400;
  }
}

/* Responsiveness purposes ---> Tablet screens (md) */
@media (max-width: 991px) {
  .st-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Responsiveness purposes ---> Small screens (sm) */
@media (max-width: 576px) {
  .st-cards-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .st-sub-text {
    font-size: 24px;
  }

  /* Tech Stack Carousel Small Screen Styles */
  .carousel-slide-container {
    min-height: 250px;
    padding-bottom: 0.5rem;
  }

  .skill-name-text {
    font-size: 0.6rem;
    line-height: 1;
  }

  .card-glow-info {
    padding: 0.25rem 0.5rem !important;
    margin: 0.125rem 0 !important;
  }

  .card-glow-info img {
    max-height: 35px !important;
  }
}

/* Sample Project Types (end) =================================== */

/* Contact (start) ============================================== */
.contact-main-text {
  text-align: center;
}

.contact-sub-text {
  font-size: 32px;
  background: linear-gradient(135deg, var(--text-secondary) 0%, var(--accent-primary) 50%, #4bc0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  filter: drop-shadow(0 4px 12px rgba(23, 162, 184, 0.2));
  position: relative;
  z-index: 1;
}

.contact-text-info {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.contact-text-info .text-info {
  color: var(--accent-primary) !important;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(23, 162, 184, 0.4);
}

/* Modern Form Styling */
.form-control {
  background-color: rgba(27, 35, 43, 0.8) !important;
  border: 1.5px solid rgba(23, 162, 184, 0.25) !important;
  color: var(--text-primary) !important;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px);
  border-radius: 10px !important;
  font-size: 16px;
  padding: 12px 16px !important;
}

.form-control-modern {
  background-color: rgba(21, 27, 33, 0.9) !important;
  border: 2px solid rgba(23, 162, 184, 0.2) !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  font-size: 15px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-control:focus {
  background-color: rgba(23, 162, 184, 0.1) !important;
  border-color: var(--accent-primary) !important;
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.25), inset 0 0 15px rgba(23, 162, 184, 0.08) !important;
  color: var(--text-primary) !important;
  outline: none !important;
}

.form-control-modern:focus {
  background-color: rgba(21, 27, 33, 0.95) !important;
  border-color: var(--accent-primary) !important;
  box-shadow: 0 0 20px rgba(23, 162, 184, 0.4), inset 0 0 12px rgba(23, 162, 184, 0.1) !important;
  outline: none !important;
}

.form-control::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.form-label {
  color: var(--text-primary) !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-bottom: 10px !important;
}

.form-group-modern {
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.contact-form {
  position: relative;
  z-index: 1;
}

/* Inquiries (start) ============================================ */
.inquiriesTable {
  background-color: var(--bg-surface);
}

.inquiriesTable th,
.inquiriesTable td,
.inquiriesTable thead th {
  border-color: var(--border-subtle);
  color: var(--text-primary);
}

.unreadMessage {
  background: linear-gradient(135deg, rgba(23, 162, 184, 0.15), rgba(23, 162, 184, 0.08));
  box-shadow: 0 4px 12px rgba(23, 162, 184, 0.2);
  border-left: 3px solid var(--accent-primary);
  font-weight: 500;
  color: var(--text-primary);
}

.readMessage {
  color: var(--text-secondary);
  font-weight: 400;
}

.cursor-pointer {
  cursor: pointer;
}

/* Rersponsiveness purposes ---> Medium-sized screens (sm) */
@media (min-width: 992px) {
  .contact-main-text {
    text-align: start;
  }

  .contact-sub-text {
    font-size: 52px;
    font-weight: 700;
  }

  .contact-text-info {
    font-size: 1.1rem;
    line-height: 1.9;
  }
}
/* Contact (end) ================================================ */

/* Footer (start) =============================================== */
.footer-section {
  border-top: 2px solid rgba(23, 162, 184, 0.15);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(15, 20, 24, 0.8) 100%);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-column {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-brand-name h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
  font-family: var(--font-stack);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand-role {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  font-family: var(--font-stack);
  font-weight: 500;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 162, 184, 0.1);
  border: 2px solid rgba(23, 162, 184, 0.2);
  border-radius: 10px;
  color: var(--accent-primary);
  font-size: 18px;
  transition: var(--transition-smooth);
  text-decoration: none;
  filter: drop-shadow(0 2px 4px rgba(23, 162, 184, 0.1));
}

.footer-social-icon:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 16px rgba(23, 162, 184, 0.3));
  text-decoration: none;
}

.footer-column-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-stack);
}

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

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-smooth);
  font-family: var(--font-stack);
  position: relative;
}

.footer-links-list a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), #4bc0c0);
  transition: width 0.3s ease;
}

.footer-links-list a:hover {
  color: var(--accent-primary);
}

.footer-links-list a:hover::before {
  width: 100%;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 162, 184, 0.3), transparent);
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 0.5rem 0;
  font-family: var(--font-stack);
  letter-spacing: 0.3px;
}

.copyright-symbol {
  color: var(--accent-primary);
  font-weight: 700;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(159, 179, 193, 0.7);
  margin: 0;
  font-style: italic;
  font-family: var(--font-stack);
}

/* Responsiveness purposes ---> Tablet screens (md) */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Responsiveness purposes ---> Small screens (sm) */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand-name h3 {
    font-size: 20px;
  }

  .footer-social-links {
    justify-content: flex-start;
  }

  .footer-column-title {
    font-size: 14px;
  }

  .footer-links-list a {
    font-size: 13px;
  }
}
/* Footer (end) ================================================= */

/* Case Study (start) =========================================== */
.cs-project-title {
  font-size: 32px;
  color: var(--text-primary);
  font-weight: 600;
}

.cs-project-quick-overview {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.cs-project-overview-title {
  text-align: center;
  font-size: 24px;
  color: var(--text-primary);
  font-weight: 600;
}

.cs-project-overview {
  font-size: 1rem;
  text-align: center;
  line-height: 1.8;
  color: var(--text-secondary) !important;
}

.cs-tools-title {
  font-size: 24px;
  color: var(--text-primary);
  font-weight: 600;
}

/* Project Type Ready more (start)=========================================== */
.projecttype-name-text {
  font-weight: 700;
  font-size: 2rem !important;
  margin: 1rem 0;
  color: var(--text-primary);
}

.projecttype-desc-text {
  font-size: 1rem !important;
  line-height: 1.8;
  color: var(--text-secondary) !important;
}

/* Rersponsiveness purposes ---> Medium-sized screens (sm) */
@media (min-width: 992px) {
  .cs-project-title {
    font-size: 52px;
    font-weight: 700;
  }

  .cs-project-quick-overview {
    font-size: 20px;
  }

  .cs-project-overview-title {
    text-align: start;
    font-size: 32px;
    font-weight: 700;
  }

  .cs-project-overview {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary) !important;
  }

  .cs-tools-title {
    font-size: 32px;
    font-weight: 700;
  }

  .projecttype-name-text {
    font-weight: 700;
    font-size: 3rem !important;
    margin: 0;
  }

  .projecttype-desc-text {
    font-size: 1.1rem !important;
    line-height: 1.9;
    color: var(--text-secondary) !important;
  }
}
/* Case Study (end) ============================================= */

.projectCount, .yearCount {
  font-size: 70px;
  color: var(--accent-primary);
  font-weight: 700;
}

.completedProjects {
  font-size: 20px;
  color: var(--text-primary);
  font-weight: 500;
}

.plusSign {
  font-size: 70px;
  color: #d49f00;
  font-weight: 700;
}

.year {
  font-size: 30px;
  color: #d49f00;
  font-weight: 600;
}

.checkFormat {
  color: #00d97e;
  font-weight: 600;
  opacity: 0.9;
}

.slideButton_custom {
  opacity: 0 !important;
}

/* technical skills logo (start) */
.whiteTxt {
  color: var(--text-primary);
}

.php {
  color: #8993be;
}

.laravel {
  color: #F05340;
}

.sql {
  color: #F29111;
}

.react {
  color: #61dbfb;
}

.node {
  color: #215732;
}

.csharp {
  color: #215732;
}

.skill_table {
  width: 100%;
}

.skill_container {
  padding: 8px 20px;
  color: var(--text-primary);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  font-weight: 600;
}

.progress_containerr {
  background-color: rgba(255, 255, 255, 0.08);
  width: 100%;
  margin-left: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 1px solid var(--border-subtle);
  border-left: none;
}

.skill_progress {
  background: linear-gradient(90deg, var(--accent-primary), rgba(23, 162, 184, 0.6));
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: right;
  font-size: 18px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 0 16px var(--accent-glow);
}

.progress_percent_label {
  margin-right: 12px;
  color: var(--text-primary);
  font-weight: 600;
}

/* Technical skills logo (end) */

.services_container {
  margin-top: 25px;
  padding-top: 20px;
  padding-left: 30px;
}

/* ProfessionalPortfolio Manual Styles (End) */

/* CJA: Project Types Styles (Start) */
.img-invalid {
  border: 1px solid #db0101
}

.colorWhite {
  color: #fff
}

.span_loadingPTDetails {
  color: #b6b6b6;
}

.show {
  display: none;
}

.hide {
  display: block;
}

.hidden_status_field {
  display: none !important;
}

.borderWhite {
  border: 1px solid #fff !important;
}

/* CJA: Project Types Styles (End) */


/* CJA: Project Styles (Start) */
.tool-pill {
  border-radius: 15px !important;
  padding: 6px 16px 6px 16px !important;
}

.add_tools_div {
  cursor: pointer;
}

.add_tools_div:hover {
  background-color: #2d3338;
}
/* CJA: Project Styles (End) */


/* CJA: Project Gallery Styles (Start) */
.gallery-img-container {
  position: relative;
  overflow: hidden;
}

.delete-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 5px;
  border-radius: 3px;
  display: none;
}

.gallery-img-container:hover .delete-overlay {
  display: block;
}
/* CJA: Project Gallery Styles (End) */

/* About Page Styles (start) ==================================== */
.about-page-container {
  overflow-x: hidden;
}

.about-hero-section {
  padding: 4rem 0 2rem 0;
  position: relative;
  z-index: 1;
}

.about-hero-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.about-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 18px;
  background: rgba(23, 162, 184, 0.15);
  border: 2px solid rgba(23, 162, 184, 0.3);
  border-radius: 10px;
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-smooth);
  font-family: var(--font-stack);
  letter-spacing: 0.3px;
}

.about-back-btn:hover {
  background: rgba(23, 162, 184, 0.25);
  border-color: var(--accent-primary);
  transform: translateX(-4px);
  box-shadow: 0 4px 16px rgba(23, 162, 184, 0.25);
  color: var(--accent-primary);
  text-decoration: none;
}

.about-back-btn i {
  transition: var(--transition-smooth);
}

.about-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-stack);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.about-hero-title .text-gradient-cyan {
  background: linear-gradient(135deg, var(--accent-primary), #4bc0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(23, 162, 184, 0.2));
}

.about-hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0;
  font-family: var(--font-stack);
}

/* Tab Navigation */
.about-tabs-wrapper {
  background: rgba(21, 27, 33, 0.5);
  border-top: 1px solid rgba(23, 162, 184, 0.15);
  border-bottom: 1px solid rgba(23, 162, 184, 0.15);
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  margin-bottom: 3rem;
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
}

.about-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-tabs-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 24px;
  border: 2px solid transparent;
  background: transparent;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-stack);
  letter-spacing: 0.3px;
}

.about-tab-btn i {
  font-size: 18px;
  transition: var(--transition-smooth);
}

.about-tab-btn:hover {
  color: var(--accent-primary);
  border-color: rgba(23, 162, 184, 0.3);
  background: rgba(23, 162, 184, 0.08);
}

.about-tab-btn:hover i {
  transform: scale(1.1);
}

.about-tab-btn-active {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  background: rgba(23, 162, 184, 0.15);
  box-shadow: 0 0 20px rgba(23, 162, 184, 0.25);
}

.about-tab-btn-active i {
  transform: scale(1.15);
}

/* Tab Content */
.about-content-wrapper {
  margin: 2rem auto;
  position: relative;
  z-index: 1;
}

.about-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.about-tab-content-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-tab-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-stack);
}

.about-tab-title i {
  color: var(--accent-primary);
  font-size: 32px;
}

/* Timeline Styles */
.about-timeline {
  position: relative;
  padding: 2rem 0;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-primary), rgba(23, 162, 184, 0.2));
}

.timeline-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.timeline-marker {
  width: 16px;
  height: 16px;
  background: var(--accent-primary);
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
  margin-top: 0.5rem;
  margin-left: 22px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(23, 162, 184, 0.4);
  transition: var(--transition-smooth);
}

.timeline-marker:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(23, 162, 184, 0.6);
}

.timeline-marker-active {
  width: 20px;
  height: 20px;
  margin-left: 18px;
  background: linear-gradient(135deg, var(--accent-primary), #4bc0c0);
  box-shadow: 0 0 20px rgba(23, 162, 184, 0.5);
}

.timeline-marker-cert {
  background: linear-gradient(135deg, #f39c12, #e8960d);
  border-color: var(--bg-primary);
  box-shadow: 0 0 12px rgba(243, 156, 18, 0.4);
}

.timeline-content {
  padding-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.timeline-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
  font-family: var(--font-stack);
}

.timeline-institution {
  font-size: 14px;
  color: var(--accent-primary);
  font-weight: 600;
  margin: 0 0 1rem 0;
  font-family: var(--font-stack);
  letter-spacing: 0.3px;
}

.timeline-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0.5rem 0;
  font-family: var(--font-stack);
}

.timeline-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-primary);
  margin: 1.5rem 0 0.75rem 0;
  font-family: var(--font-stack);
  letter-spacing: 0.2px;
}

/* Academic Honors Badge */
.honors-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  margin: 1.5rem 0 1.5rem 0;
  background: linear-gradient(135deg, rgba(23, 162, 184, 0.08) 0%, rgba(23, 162, 184, 0.04) 100%);
  border: 2px solid rgba(23, 162, 184, 0.3);
  border-radius: 12px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  max-width: 350px;
}

.honors-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), #4bc0c0);
}

.honors-badge:hover {
  background: linear-gradient(135deg, rgba(23, 162, 184, 0.15) 0%, rgba(23, 162, 184, 0.08) 100%);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 24px rgba(23, 162, 184, 0.15);
  transform: translateY(-2px);
}

.honors-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(23, 162, 184, 0.2);
  border-radius: 50%;
  font-size: 24px;
  color: var(--accent-primary);
}

.honors-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.honors-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-primary);
  letter-spacing: 0.5px;
  font-family: var(--font-stack);
}

.honors-name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-stack);
}

.honors-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0.25rem 0 0 0;
  font-family: var(--font-stack);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .honors-badge {
    padding: 1rem;
    gap: 0.75rem;
  }

  .honors-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .honors-name {
    font-size: 16px;
  }

  .honors-description {
    font-size: 13px;
  }
}

.timeline-achievements {
  margin: 0.75rem 0 1rem 0;
  padding-left: 1.5rem;
}

.timeline-achievements li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  position: relative;
  font-family: var(--font-stack);
}

.timeline-achievements li::before {
  content: "•";
  color: var(--accent-primary);
  font-weight: bold;
  position: absolute;
  left: -1.2rem;
  top: 0;
}

.journey-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.journey-disclaimer p {
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}



/* Tech Stack Badges */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.tech-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(23, 162, 184, 0.15);
  border: 1px solid rgba(23, 162, 184, 0.3);
  color: var(--accent-primary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition-smooth);
  font-family: var(--font-stack);
}

.tech-badge:hover {
  background: rgba(23, 162, 184, 0.25);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(23, 162, 184, 0.2);
}

/* Accomplishments Section */
.accomplishments-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-stack);
}

.accomplishments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.accomplishment-card {
  background: rgba(21, 27, 33, 0.95);
  border: 2px solid rgba(23, 162, 184, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: var(--transition-smooth);
  text-align: center;
}

.accomplishment-card:hover {
  border-color: rgba(23, 162, 184, 0.4);
  background: rgba(21, 27, 33, 0.98);
  box-shadow: 0 8px 24px rgba(23, 162, 184, 0.15);
  transform: translateY(-4px);
}

.accomplishment-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-primary), #4bc0c0);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--bg-primary);
  margin: 0 auto 1rem;
  transition: var(--transition-smooth);
}

.accomplishment-card:hover .accomplishment-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
}

.accomplishment-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem 0;
  font-family: var(--font-stack);
}

.accomplishment-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  font-family: var(--font-stack);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .about-hero-title {
    font-size: 36px;
  }

  .about-hero-subtitle {
    font-size: 16px;
  }

  .about-tab-title {
    font-size: 24px;
  }

  .about-tabs-container {
    gap: 0.75rem;
  }

  .about-back-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

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

@media (max-width: 768px) {
  .about-tabs-container {
    gap: 0.5rem;
  }

  .about-tab-btn {
    padding: 10px 16px;
    font-size: 13px;
    gap: 0.5rem;
  }

  .about-tab-btn i {
    font-size: 16px;
  }

  .about-hero-title {
    font-size: 28px;
  }

  .about-hero-subtitle {
    font-size: 14px;
  }

  .about-tab-title {
    font-size: 20px;
    gap: 0.75rem;
  }

  .about-tab-title i {
    font-size: 24px;
  }

  .about-back-btn {
    padding: 8px 12px;
    font-size: 12px;
    gap: 0.4rem;
  }

  .about-back-btn span {
    display: none;
  }

  .timeline-item {
    gap: 1.5rem;
  }

  .timeline-marker {
    margin-left: 20px;
  }

  .timeline-marker-active {
    margin-left: 16px;
  }

  .about-timeline::before {
    left: 26px;
  }

  .timeline-title {
    font-size: 18px;
  }

  .timeline-description {
    font-size: 14px;
  }

  .tech-stack {
    justify-content: center;
  }

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

  .accomplishment-card {
    padding: 1.25rem;
  }

  .about-content-wrapper {
    margin: 1rem auto;
  }
}

@media (max-width: 576px) {
  .about-hero-title {
    font-size: 24px;
  }

  .about-hero-subtitle {
    font-size: 12px;
  }

  .about-tab-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .about-tab-title {
    font-size: 18px;
  }

  .timeline-item {
    gap: 1rem;
  }

  .timeline-marker {
    margin-top: 0.25rem;
  }

  .timeline-title {
    font-size: 16px;
  }

  .timeline-institution {
    font-size: 12px;
  }

  .timeline-description {
    font-size: 13px;
  }
}
/* About Page Styles (end) ====================================== */

/*  */