@charset "UTF-8";

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Quicksand", sans-serif;
  --nav-font: "Open Sans", sans-serif
}

:root {
  --background-color: #ffffff;
  --default-color: #314862;
  --heading-color: #13447f;
  --accent-color: #065cc2;
  --surface-color: #ffffff;
  --contrast-color: #ffffff
}

:root {
  --nav-color: #314862;
  --nav-hover-color: #065cc2;
  --nav-mobile-background-color: #11427d;
  --nav-dropdown-background-color: #065cc2;
  --nav-dropdown-color: #acc4e0;
  --nav-dropdown-hover-color: #ffffff
}

:root {
  scroll-behavior: smooth
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font)
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: .3s
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font)
}

.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all .5s;
  z-index: 997
}

.header .logo {
  line-height: 1
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700
}

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative
}

.footer .social-links {
  margin-top: 20px
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: .3s
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color)
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all .4s
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color)
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px
}

@media screen and (max-width:768px) {
  [data-aos-delay] {
    transition-delay: 0 !important
  }
}

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700
}

.section,
section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip
}

.section-title {
  padding-bottom: 60px;
  position: relative
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding: 0;
  line-height: normal;
  margin: 0;
  letter-spacing: .5px;
  position: relative
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 10px 10px
}

.section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 5px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font)
}

.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center
}

.header {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, .05)
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/bg/by.jpg) no-repeat center center;
  background-size: cover;
  opacity: 1;
  z-index: 1
}

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

@media (max-width:991px) {
  .hero .hero-content {
    padding: 60px 30px;
    text-align: center
  }
}

@media (max-width:576px) {
  .hero .hero-content {
    padding: 40px 20px
  }
}

.hero .content-wrapper {
  max-width: 820px
}

.hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2
}

@media (max-width:768px) {
  .hero .hero-title {
    font-size: 2.8rem
  }
}

@media (max-width:576px) {
  .hero .hero-title {
    font-size: 2.2rem
  }
}

.hero .hero-title .typed {
  color: var(--accent-color);
  position: relative
}

.hero .lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 3rem;
  line-height: 1.6
}

@media (max-width:768px) {
  .hero .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem
  }
}

.hero .hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem
}

@media (max-width:768px) {
  .hero .hero-actions {
    justify-content: center;
    margin-bottom: 2rem
  }
}

@media (max-width:576px) {
  .hero .hero-actions {
    flex-direction: column;
    align-items: center
  }
}

.hero .hero-actions .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 15px;
  text-decoration: none;
  transition: all .3s ease
}

.hero .hero-actions .btn.btn-primary {
  background-color: #ffde01;
  color: #314862;
  border: 2px solid #ffde01
}

.hero .hero-actions .btn.btn-primary:hover {
  background-color: #ffff;
  color: #314862;
  border: 2px solid #ffff
}

.hero .hero-actions .btn.btn-outline {
  background-color: #065cc2;
  color: #ffff;
  border: 2px solid #065cc2
}

.hero .hero-actions .btn.btn-outline:hover {
  background-color: #ffff;
  color: #314862;
  border-color: #ffff
}

.hero .social-links {
  display: flex;
  gap: 1rem
}

@media (max-width:768px) {
  .hero .social-links {
    justify-content: center
  }
}

.hero .social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25%;
  background-color: var(--surface-color);
  color: var(--default-color);
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%)
}

.hero .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px)
}

.hero .social-links a i {
  font-size: 1.2rem
}

.hero .hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px
}

@media (max-width:991px) {
  .hero .hero-image {
    min-height: auto;
    padding: 40px 30px
  }
}

.hero .image-container {
  position: relative;
  max-width: 500px;
  width: 100%
}

.hero .hero-main-image {
  border-radius: 20px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  z-index: 2
}

@keyframes float {

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

  50% {
    transform: translateY(-20px)
  }
}

.about .profile-image-wrapper {
  position: relative
}

.about .profile-image-wrapper .profile-image {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 25px;
  border-radius: 0%;
  overflow: hidden;
  border: 5px solid var(white);

}

.about .profile-image-wrapper .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

@media (max-width:768px) {
  .about .profile-image-wrapper .profile-image {
    width: 200px;
    height: 200px
  }
}

.about .profile-image-wrapper .signature-section {
  text-align: center
}

.about .profile-image-wrapper .signature-section .signature {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  opacity: .8
}

.about .profile-image-wrapper .signature-section .quote {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin: 0;
  max-width: 250px;
  margin: 0 auto
}

.about .about-content .intro {
  margin-bottom: 40px
}

.about .about-content .intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700
}

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

.about .about-content .intro p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%)
}

@media (max-width:768px) {
  .about .about-content .intro p {
    text-align: center
  }
}

.about .about-content .journey-timeline {
  margin-bottom: 40px
}

.about .about-content .journey-timeline .timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  border-left: 3px solid var(--accent-color);
  background: color-mix(in srgb, var(--surface-color), transparent 30%);
  border-radius: 0 8px 8px 0;
  transition: all .3s ease
}

.about .about-content .journey-timeline .timeline-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 10%)
}

.about .about-content .journey-timeline .timeline-item:last-child {
  margin-bottom: 0
}

.about .about-content .journey-timeline .timeline-item .year {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 18px;
  min-width: 80px;
  margin-right: 20px
}

.about .about-content .journey-timeline .timeline-item .description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5
}

@media (max-width:576px) {
  .about .about-content .journey-timeline .timeline-item {
    flex-direction: column;
    align-items: flex-start
  }

  .about .about-content .journey-timeline .timeline-item .year {
    margin-right: 0;
    margin-bottom: 8px
  }
}

@media (max-width:992px) {
  .about .profile-image-wrapper {
    margin-bottom: 40px
  }
}

.resume .section-header {
  margin-bottom: 2.5rem
}

.resume .section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem
}

.resume .section-header h2 i {
  color: var(--accent-color);
  font-size: 1.5rem
}

.resume .section-header .section-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1rem;
  line-height: 1.6
}

.resume .experience-section {
  padding-right: 1.5rem
}

.resume .experience-section .experience-cards .experience-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden
}

.resume .experience-section .experience-cards .experience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%))
}

.resume .experience-section .experience-cards .experience-card:hover {
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  transform: translateY(-5px)
}

.resume .experience-section .experience-cards .experience-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem
}

.resume .experience-section .experience-cards .experience-card .card-header .role-info h3 {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .25rem
}

.resume .experience-section .experience-cards .experience-card .card-header .role-info h4 {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 500;
  margin: 0
}

.resume .experience-section .experience-cards .experience-card .card-header .duration {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: .4rem .8rem;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap
}

.resume .experience-section .experience-cards .experience-card .card-body p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
  line-height: 1.6
}

.resume .experience-section .experience-cards .experience-card .card-body .achievements {
  margin: 0;
  padding-left: 0;
  list-style: none
}

.resume .experience-section .experience-cards .experience-card .card-body .achievements li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: .9rem
}

.resume .experience-section .experience-cards .experience-card .card-body .achievements li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: 700
}

.resume .experience-section .experience-cards .experience-card .card-body .achievements li:last-child {
  margin-bottom: 0
}

.resume .education-section {
  padding-left: 1.5rem
}

.resume .education-section .education-timeline {
  position: relative
}

.resume .education-section .education-timeline .timeline-track {
  position: absolute;
  left: 1rem;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%))
}

.resume .education-section .education-timeline .education-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.5rem
}

.resume .education-section .education-timeline .education-item:last-child {
  margin-bottom: 0
}

.resume .education-section .education-timeline .education-item .timeline-marker {
  position: absolute;
  left: .5rem;
  top: 1.5rem;
  width: 1rem;
  height: 1rem;
  background: var(--accent-color);
  border: 3px solid var(--surface-color);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%)
}

.resume .education-section .education-timeline .education-item .education-content {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all .3s ease
}

.resume .education-section .education-timeline .education-item .education-content:hover {
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%)
}

.resume .education-section .education-timeline .education-item .education-content .degree-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .5rem
}

.resume .education-section .education-timeline .education-item .education-content .degree-header h3 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3
}

.resume .education-section .education-timeline .education-item .education-content .degree-header .year {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: .3rem .7rem;
  border-radius: 15px;
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap
}

.resume .education-section .education-timeline .education-item .education-content .institution {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: .8rem
}

.resume .education-section .education-timeline .education-item .education-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: .9rem;
  line-height: 1.5
}

@media (max-width:992px) {

  .resume .education-section,
  .resume .experience-section {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 3rem
  }

  .resume .section-header h2 {
    font-size: 1.6rem
  }

  .resume .experience-cards .experience-card .card-header {
    flex-direction: column;
    gap: .8rem
  }

  .resume .experience-cards .experience-card .card-header .duration {
    align-self: flex-start
  }

  .resume .education-timeline .education-item .education-content .degree-header {
    flex-direction: column;
    gap: .5rem
  }

  .resume .education-timeline .education-item .education-content .degree-header .year {
    align-self: flex-start
  }
}

@media (max-width:576px) {
  .resume .section-header h2 {
    font-size: 1.4rem
  }

  .resume .section-header h2 i {
    font-size: 1.2rem
  }

  .resume .experience-cards .experience-card {
    padding: 1.3rem
  }

  .resume .education-timeline .timeline-track {
    left: .5rem
  }

  .resume .education-timeline .education-item {
    padding-left: 2rem
  }

  .resume .education-timeline .education-item .timeline-marker {
    left: 0
  }
}

.services .service-item {
  height: 100%;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px -5px rgba(0, 0, 0, .05);
  transition: all .3s ease-in-out;
  position: relative;
  overflow: hidden
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--accent-color);
  transition: height .3s ease-in-out
}

.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px -5px rgba(0, 0, 0, .08)
}

.services .service-item:hover::before {
  height: 100%
}

.services .service-item:hover .icon i {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-color)
}

.services .service-item:hover .link-item i {
  transform: translateX(5px)
}

.services .service-item .icon {
  margin-bottom: 1.5rem
}

.services .service-item .icon i {
  font-size: 2.5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transition: all .3s ease-in-out
}

.services .service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font)
}

.services .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem
}

.services .service-item .card-links {
  margin-top: auto
}

.services .service-item .card-links .link-item {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  font-size: .95rem;
  transition: color .3s ease
}

.services .service-item .card-links .link-item i {
  margin-left: .5rem;
  font-size: 1.1rem;
  transition: transform .3s ease
}

.services .service-item .card-links .link-item:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%)
}

@media (max-width:991px) {
  .services .card-item {
    padding: 1.75rem
  }

  .services .card-item h3 {
    font-size: 1.35rem
  }

  .services .card-item .icon i {
    font-size: 2.25rem
  }
}

@media (max-width:767px) {
  .services .card-item {
    padding: 1.5rem
  }

  .services .card-item h3 {
    font-size: 1.25rem
  }

  .services .card-item .icon i {
    font-size: 2rem
  }

  .services .card-item:hover {
    transform: translateY(-3px)
  }
}

.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 25px;
  cursor: pointer;
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .3s ease
}

.portfolio .portfolio-filters li i {
  font-size: 1.1em;
  transition: transform .3s ease
}

.portfolio .portfolio-filters li:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent-color), transparent 92%)
}

.portfolio .portfolio-filters li:hover i {
  transform: scale(1.1)
}

.portfolio .portfolio-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color)
}

@media (max-width:768px) {
  .portfolio .portfolio-filters {
    gap: 10px
  }

  .portfolio .portfolio-filters li {
    padding: 8px 20px;
    font-size: 14px
  }
}

.portfolio .portfolio-entry {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .05)
}

.portfolio .portfolio-entry .entry-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16/9
}

.portfolio .portfolio-entry .entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.portfolio .portfolio-entry .entry-image .entry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.portfolio .portfolio-entry .entry-image .entry-overlay .overlay-content {
  width: 100%;
  transform: translateY(20px);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-meta {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links {
  display: flex;
  gap: 15px
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  color: var(--accent-color);
  border-radius: 12px;
  font-size: 20px;
  transition: all .3s ease;
  opacity: 0;
  transform: translateY(20px)
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px)
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:nth-child(1) {
  transition-delay: .1s
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:nth-child(2) {
  transition-delay: .2s
}

.portfolio .portfolio-entry:hover .entry-image img {
  transform: scale(1.05)
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay {
  opacity: 1;
  transform: translateY(0)
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .overlay-content {
  transform: translateY(0)
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .entry-links a {
  opacity: 1;
  transform: translateY(0)
}

@media (max-width:768px) {
  .portfolio .portfolio-entry .entry-image .entry-overlay {
    padding: 20px
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
    font-size: 20px;
    margin-bottom: 15px
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
    width: 40px;
    height: 40px;
    font-size: 18px
  }
}

.portfolio .portfolio-item .entry-image {
   position: relative;
  width: 100%;
  aspect-ratio: 1024 / 683;
  overflow: hidden;
  border-radius: 14px;
  background: #f4f4f4;
}

@media (min-width:1200px) {
  .portfolio .portfolio-item .entry-title {
    font-size: 20px
  }
}

@media (min-width:768px) {
  .portfolio .row {
    margin-left: -10px;
    margin-right: -10px
  }

  .portfolio .row .portfolio-item {
    padding-left: 10px;
    padding-right: 10px
  }
}

@media (min-width:992px) {
  .portfolio .row {
    margin-left: -12px;
    margin-right: -12px
  }

  .portfolio .row .portfolio-item {
    padding-left: 12px;
    padding-right: 12px
  }
}

@media (min-width:1200px) {
  .portfolio .row {
    margin-left: -15px;
    margin-right: -15px
  }

  .portfolio .row .portfolio-item {
    padding-left: 15px;
    padding-right: 15px
  }
}

@media (min-width:1200px) {
  .portfolio .entry-overlay {
    padding: 25px
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .portfolio .entry-overlay {
    padding: 20px
  }
}

@media (max-width:991px) {
  .portfolio .entry-overlay {
    padding: 20px
  }
}



.contact-footer .section-title {
  max-width: 720px;
  margin-bottom: 60px
}

.contact-info-card {
  background: #0d5bd7;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 20px 40px rgba(13, 91, 215, .25)
}

.contact-info-card .info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.contact-info-card .info-item i {
  font-size: 22px;
  color: #fff;
  margin-top: 4px
}

.contact-info-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #e9f0ff
}

.contact-info-card a,
.contact-info-card p {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  opacity: .95
}

.contact-info-card a:hover {
  text-decoration: underline
}

.contact-info-card .social-links {
  display: flex;
  gap: 12px;
  margin-top: auto
}

.contact-info-card .social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .3s
}

.contact-info-card .social-links a:hover {
  background: #fff;
  color: #0d5bd7
}

.contact-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08)
}

.contact-form-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px
}

.contact-form-card p {
  font-size: 15px;
  color: white;
  margin-bottom: 24px
}

.contact-form .btn-primary {
  padding: 14px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #dfe7f5;
  text-align: center;
  font-size: 14px;
  color: #6c757d
}

@media (max-width:991px) {
  .contact-footer {
    padding: 80px 0 40px
  }

  .contact-form-card,
  .contact-info-card {
    padding: 32px
  }
}

@media (max-width:575px) {
  .contact-footer .section-title {
    text-align: left
  }

  .contact-form-card,
  .contact-info-card {
    padding: 24px;
    border-radius: 16px
  }

  .contact-info-card {
    text-align: left
  }

  .contact-info-card .social-links {
    justify-content: flex-start
  }

  .footer-bottom {
    font-size: 13px
  }
}

.footer-top {
  margin-bottom: 30px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.social-links a {
  color: #cbd5f5;
  margin-left: 12px;
  font-size: 16px;
  transition: .3s
}

.social-links a:hover {
  color: #3b82f6
}

.footer-content h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px
}

.footer-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: .9
}

.footer-link {
  color: #3b82f6;
  font-size: 14px
}

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

.footer-list li {
  font-size: 14px;
  margin-bottom: 10px
}

.footer-list a {
  color: #cbd5f5;
  text-decoration: none
}

.footer-list a:hover {
  color: #3b82f6
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-form input,
.footer-form textarea {
  background: 0 0;
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px
}

.footer-form button {
  align-self: flex-end;
  background: #3b82f6;
  border: none;
  color: #fff;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s
}

.footer-form button:hover {
  background: #ffde01
}

.footer-bottom {
  font-size: 13px;
  opacity: .7
}

@media (max-width:767px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center
  }

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

@media (max-width:767px) {
  .footer-content {
    text-align: left
  }

  .footer-content>div {
    margin-bottom: 32px
  }

  .footer-top {
    flex-direction: column;
    gap: 16px;
    text-align: center
  }

  .brand {
    justify-content: center
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 14px
  }

  .footer-content h4 {
    font-size: 15px;
    margin-bottom: 12px
  }

  .footer-content p {
    font-size: 14px;
    line-height: 1.7
  }

  .footer-list li {
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center
  }

  .footer-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px
  }

  .footer-form {
    gap: 12px
  }

  .footer-form input,
  .footer-form textarea {
    font-size: 14px;
    padding: 12px 14px;
    border-radius: 10px
  }

  .footer-form textarea {
    resize: none
  }

  .footer-form button {
    width: 100%;
    border-radius: 12px;
    padding: 12px;
    font-size: 14px
  }

  .footer-bottom {
    font-size: 12px;
    text-align: center;
    margin-top: 20px
  }
}

.portfolio-details {
  --section-spacing: 2.5rem
}

.portfolio-details .portfolio-details-media {
  position: relative
}

.portfolio-details .portfolio-details-media .main-image {
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

.portfolio-details .portfolio-details-content {
  padding: 0 0 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column
}

.portfolio-details .portfolio-details-content .project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem
}

.portfolio-details .portfolio-details-content .project-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color)
}

.portfolio-details .portfolio-details-content .project-website {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem
}

.portfolio-details .portfolio-details-content .project-website i {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 8px
}

.portfolio-details .portfolio-details-content .project-website a {
  font-weight: 500;
  transition: all .3s
}

.portfolio-details .portfolio-details-content .project-website a:hover {
  letter-spacing: .5px
}

.portfolio-details .portfolio-details-content .project-overview {
  margin-bottom: var(--section-spacing)
}

.portfolio-details .portfolio-details-content .project-overview .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem
}

@media (max-width:1199.98px) {
  .portfolio-details .portfolio-details-content {
    padding-left: 1rem
  }
}

@media (max-width:991.98px) {
  .portfolio-details .portfolio-details-content {
    padding: 2rem 0 0 0
  }
}

@media (max-width:767.98px) {
  .portfolio-details .project-meta {
    flex-direction: column;
    gap: 1rem
  }
}

.service-details .service-hero {
  position: relative;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover
}

.service-details .service-content .service-header {
  margin-bottom: 40px
}

.service-details .service-content .service-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color)
}

.service-details .service-content .service-header .service-intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%)
}

.service-details .service-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color)
}

.service-details .service-gallery {
  margin-bottom: 30px
}

.service-details .service-gallery img {
  transition: transform .3s ease
}

.service-details .service-gallery img:hover {
  transform: scale(1.05)
}

@media (max-width:768px) {
  .service-details .service-hero img {
    height: 250px
  }

  .service-details .service-content .service-header h2 {
    font-size: 24px
  }
}

.desktop-nav a {
  margin-left: 24px;
  font-weight: 500;
  color: #314862
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: #065cc2
}

.logo span {
  font-size: 24px;
  font-weight: 700
}

.mobile-sheet {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 16px;
  transition: .4s ease;
  z-index: 1001
}

.mobile-sheet.active {
  bottom: 0
}

.mobile-sheet {
  transition: transform .35s ease, bottom .35s ease
}

.mobile-sheet {
  touch-action: none
}

.sheet-handle {
  width: 40px;
  height: 4px;
  background: #ccc;
  border-radius: 2px;
  margin: 0 auto 12px
}

.sheet-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  font-size: 16px;
  color: #314862;
  border-radius: 8px
}

.sheet-nav a i {
  font-size: 18px;
  color: #065cc2
}

.sheet-nav a:hover {
  background: #f0f6ff
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 1000
}

.sheet-backdrop.active {
  opacity: 1;
  pointer-events: auto
}

.mobile-nav-btn {
  background: 0 0;
  border-color: transparent
}

.desktop-nav a.active {
  color: var(--accent-color);
  font-weight: 600
}

.sheet-nav a.active {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color)
}

.sheet-nav a.active i {
  color: var(--accent-color)
}

.contact-footer {
  background: radial-gradient(circle at top, #065cc2, #065cc2);
  color: #a5a6c5;
  padding: 90px 0 40px
}

.contact-header {
  text-align: center;
  margin-bottom: 70px
}

.contact-header h2 {
  color: #fff;
  font-size: 34px
}

.contact-header p {
  font-size: 15px;
  opacity: .85
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.6fr;
  gap: 60px
}

.contact-footer h4,
.contact-footer h5 {
  color: #fff;
  margin-bottom: 16px
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px
}

.footer-social {
  display: flex;
  gap: 14px
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffde01;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #065cc2;
  transition: .3s ease
}

.footer-social a:hover {
  background: white;
  color: #065cc2
}

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

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 14px
}

.contact-list i {
  color: #38bdf8
}

.footer-form p {
  font-size: 14px;
  margin-bottom: 18px
}

.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.footer-contact-form input,
.footer-contact-form textarea {
  background: 0 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  padding: 10px 4px;
  color: #fff;
  font-size: 14px
}

.footer-contact-form textarea {
  resize: none
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
  color: #dbdbdb
}

.footer-contact-form button {
  margin-top: 12px;
  align-self: flex-start;
  background: 0 0;
  border: none;
  color: #38bdf8;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: .3s
}

.footer-contact-form button:hover {
  color: #0ea5e9;
  transform: translateX(4px)
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  font-size: 13px;
  color: #6b7280
}

@media (max-width:992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }

  .footer-form {
    grid-column: span 2
  }
}

@media (max-width:576px) {
  .contact-footer {
    padding: 70px 0 30px
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .footer-form {
    grid-column: auto
  }

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

@media (min-width:1200px) {
  .footer-form {
    max-width: 420px
  }

  .footer-contact-form {
    gap: 12px
  }

  .footer-contact-form textarea {
    min-height: 90px
  }

  .footer-form {
    margin-top: -10px
  }
}

@media (min-width:992px) {
  .footer-contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
  }
}

.footer-contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px
}

@media (min-width:992px) {
  .footer-contact-form .form-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:575px) {

  .footer-contact-form input,
  .footer-contact-form textarea {
    padding: 14px 0
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 40px;
  align-items: stretch
}

.footer-col {
  height: 100%;
  display: flex;
  flex-direction: column
}

.footer-form {
  justify-content: space-between
}

.footer-contact-form input,
.footer-contact-form textarea {
  padding: 12px 0;
  margin-bottom: 14px
}

.footer-contact-form textarea {
  min-height: 90px;
  resize: none
}

.footer-contact-form button {
  margin-top: 8px
}

@media (max-width:991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .footer-col {
    height: auto
  }
}

.footer-form {
  max-width: 420px
}

.contact-footer {
  padding: 80px 0 40px
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 16px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.footer-bottom p {
  margin: 0;
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.4;
  color: black
}

@media (max-width:768px) {
  .contact-footer {
    padding: 64px 0 24px
  }

  .footer-bottom {
    margin-top: 32px
  }
}

.contact-footer {
  padding-bottom: 28px
}

.contact-header {
  max-width: 520px;
  margin-bottom: 56px;
  text-align: left
}

.contact-header h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px
}

.contact-header p {
  font-size: 15px;
  opacity: .75;
  line-height: 1.6
}

@media (max-width:768px) {
  .contact-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto
  }
}

.footer-contact-form button {
  border-radius: 8px
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-content {
  color: #fff;
  padding-right: 0;
  padding-left: 0
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff
}

.hero-title span.typed {
  color: #ffd400;
  display: inline-block
}

.hero-title br {
  content: "";
  display: block;
  margin-bottom: 10px
}

.hero .lead {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .9);
  max-width: 520px;
  display: inline-block
}

.hero .lead b {
  font-weight: 600;
  color: #fff
}

.hero-actions {
  margin-top: 32px
}

.hero-actions .btn-outline {
  border: 1px solid #fff;
  color: #fff;
  background: 0 0
}

.hero-actions .btn-outline:hover {
  background: #fff;
  color: #0d6efd
}

.social-links {
  margin-top: 32px;
  display: flex;
  gap: 15px
}

.social-links a {
  width: 42px;
  height: 42px;
  background: #fff;
  color: #0d6efd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15)
}

.hero-image {
  text-align: center
}

.hero-image img {
  max-width: 150%;
  max-height: 80vh
}

@media (max-width:991px) {
  .hero {
    padding-bottom: 80px
  }

  .hero-image {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
    text-align: center
  }

  .hero-image img {
    max-height: 420px
  }

  .hero-content {
    text-align: center
  }

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

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

@media (max-width:991px) {
  .hero {
    padding: 120px 0 80px
  }

  .hero-content {
    text-align: center
  }

  .hero-image {
    margin-top: 40px
  }

  .hero-image img {
    max-height: 420px
  }

  .hero-actions {
    justify-content: center
  }

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

.navbar-overlay {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: 0 0;
  transition: all .3s ease
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff
}

.nav-links {
  display: flex;
  gap: 26px
}

.nav-links a {
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  font-size: .95rem;
  text-decoration: none;
  position: relative
}

.nav-links a.active,
.nav-links a:hover {
  color: #fff
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #ffd400
}

.navbar-overlay.scrolled {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08)
}

.navbar-overlay.scrolled .logo {
  color: #0d6efd
}

.navbar-overlay.scrolled .nav-links a {
  color: #333
}

.navbar-overlay.scrolled .nav-links a.active {
  color: #0d6efd
}

/* ================================
   CERTIFICATION LOGOS – ENHANCED
================================ */

/* Content spacing */
.education-content {
  position: relative;
  padding-right: 200px;
}

/* Logo container */
.cert-logos {
  position: absolute;
  top: 85px; /* align sa June 2025 */
  right: 32px;

  display: flex;
  flex-wrap: wrap;              /* ✅ auto-adjust */
  gap: 12px;
  max-width: 500px;             /* prevents overflow */
  align-items: center;

  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s ease;
}

/* Animate when item is visible (AOS compatible) */
.education-item[data-aos].aos-animate .cert-logos {
  opacity: 1;
  transform: translateY(0);
}

/* Logo style */
.cert-logos img {
  height: 50px;
  width: auto;
  object-fit: contain;

  transition: all 0.25s ease;
  cursor: pointer;
}

/* Hover highlight (simple & clean) */
.cert-logos img:hover {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(1.15);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .education-content {
    padding-right: 0;
  }

  .cert-logos {
    position: static;
    margin-top: 12px;
    max-width: 100%;
  }
}


.portfolio-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}



.portfolio-card-body {
  padding: 18px 22px;
}

.portfolio-card-body h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.portfolio-card-body p {
  font-size: 14px;
  color: #666;
}

/* FORCE 1024x683 ASPECT RATIO */
.portfolio-card .swiper {
  aspect-ratio: 1024 / 683; /* SAME AS IMAGE */
  width: 100%;
  background: #f3f3f3;
}

/* IMAGE ITSELF */
.portfolio-card .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* IMPORTANT */
}

.portfolio-card .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
}

@media (min-width: 1200px) {
  .portfolio-card .swiper {
    max-width: 1024px;
    margin: auto;
  }
}



.badge {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #0d6efd;
  color: #fff;
  margin-bottom: 10px;
}

.badge-branch {
  background: #ff9800;
}

/* Swiper arrows inside image */
.portfolio-card .swiper-button-next,
.portfolio-card .swiper-button-prev {
  color: #fff;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,.4);
  border-radius: 50%;
}


/* ==============================
   FULLSCREEN PORTFOLIO PREVIEW
================================ */

.portfolio-preview {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.portfolio-preview.active {
  display: block;
}

/* Dark overlay */
.preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

/* Center container */
.preview-content {
  position: relative;
  max-width: 1024px;
  aspect-ratio: 1024 / 683;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image */
.preview-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Close button */
.preview-close {
  position: absolute;
  top: -48px;
  right: 0;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .preview-content {
    width: 95%;
    aspect-ratio: auto;
    max-height: 90vh;
  }
}

/* Make image look clickable */
.portfolio-card img {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

/* Slight zoom on hover (subtle) */
.portfolio-card img:hover {
  transform: scale(1.02);
}

/* Overlay container */
.portfolio-card .swiper-slide {
  position: relative;
}

/* Magnify icon */
.portfolio-card .swiper-slide::after {
  content: "\f3b2"; /* Bootstrap Icons zoom-in */
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #fff;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

/* Show on hover */
.portfolio-card .swiper-slide:hover::after {
  opacity: 1;
}

/* Cursor */
.portfolio-card .swiper-slide img {
  cursor: zoom-in;
}
/* Slight lift on hover */
.portfolio-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}



.portfolio-card .swiper-button-prev::after,
.portfolio-card .swiper-button-next::after {
  font-size: 10px;
}


.preview-content {
  position: relative;
}

/* NAV BUTTONS */
.preview-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 22px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.preview-nav.prev { left: -60px; }
.preview-nav.next { right: -60px; }

.preview-nav:hover {
  background: rgba(0,0,0,0.8);
}


#previewVideo {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

#previewImage {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.preview-content {
  background: #000; /* okay lang, pang-video */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VIDEO THUMBNAIL – EXACT SIZE (NO CROP) */
.portfolio-card .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* ✅ exact video size */
  background: #000;      /* black bars */
  display: block;
}


.contact-footer {
  background:
    linear-gradient(
      #065cc2,
      #00000020
    ),
    url("../img/bg/footer3.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #ffffff;
  padding: 90px 0 0;
}


/* CV Download Button */
.signature-section .cv-download-btn {

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 14px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.3s ease;
}

.signature-section .cv-download-btn i {
  font-size: 18px;
}

.signature-section .cv-download-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);

}


/* Container */
.credly-button-wrapper {
  display: flex;
  flex-wrap: wrap;       /* buttons wrap to next line on small screens */
  justify-content: center; /* center horizontally */
  gap: 1rem;             /* space between buttons */
  margin-top: 2rem;
}

/* Buttons */
.btn-credly {
  background-color: #065cc2; /* Credly Blue-ish */
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  text-align: center;
  white-space: nowrap; /* prevent text from breaking awkwardly */
}

.btn-credly:hover {
  background-color: #ffde01;
  transform: translateY(-2px);
  color: #000; /* optional: contrast on hover */
}

/* Responsive: smaller screens */
@media (max-width: 768px) {
  .btn-credly {
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .btn-credly {
    flex: 1 1 100%; /* full width buttons */
    justify-content: center;
    font-size: 0.9rem;
  }
}
