/*========================== PORTFOLIO HERO ===========================*/
.portfolio-hero {
  position: relative;
  padding: 140px 0 120px;
  background: linear-gradient(135deg, #1a1a4d, #232369);
  overflow: hidden;
  color: #fff;
}
/* Grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}
/* Glow Circles */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  animation: circleMove 8s infinite linear;
}
.hero-circle1 {
  width: 250px;
  height: 250px;
  background: rgba(251, 2, 34, 0.18);
  top: -80px;
  left: -70px;
}
.hero-circle2 {
  width: 330px;
  height: 330px;
  background: rgba(255, 255, 255, 0.05);
  right: -80px;
  bottom: 50px;
  animation-duration: 12s;
}
/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  backdrop-filter: blur(12px);
  margin-bottom: 25px;
  font-weight: 600;
}
.hero-badge i {
  color: #fb0222;
}
/* Heading */
.portfolio-hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.portfolio-hero h1 span {
  color: #fb0222;
}
/* Paragraph */
.portfolio-hero p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
}

/* Image */
.hero-img {
  max-width: 500px;
  animation: heroFloat 4s ease infinite;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.25));
}
/* Wave */
/* Animations */
@keyframes heroFloat {
  50% {
    transform: translateY(-18px);
  }
}
@keyframes circleMove {
  50% {
    transform: translateY(-25px) rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.circle1 {
  width: 280px;
  height: 280px;
  background: rgba(251, 2, 34, 0.05);
  left: -120px;
  top: 100px;
}
.circle2 {
  width: 180px;
  height: 180px;
  background: rgba(26, 26, 77, 0.05);
  right: 5%;
  top: 15%;
}
.plus1 {
  right: 12%;
  top: 160px;
}
.plus2 {
  left: 10%;
  bottom: 120px;
}
/*============================== IMAGE ===============================*/
.showcase-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}
.showcase-image img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: 0.4s;
}
.showcase-image:hover img {
  transform: scale(1.03);
}
.showcase-image:hover img {
  transform: scale(1.05);
}
/*========================= PROJECT SHOWCASE ==========================*/
.project-showcase {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}
.project-showcase .container {
  position: relative;
  z-index: 2;
}
/*====================== Background Shapes =======================*/
.ps-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
  animation: blobFloat 8s ease-in-out infinite;
}
.circle1 {
  width: 260px;
  height: 260px;
  top: -120px;
  left: -100px;
  background: rgba(246, 5, 37, 0.1);
}
.circle2 {
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -80px;
  background: rgba(30, 35, 92, 0.08);
}
/*====================== LEFT COLUMN =======================*/
.firstcol {
  position: relative;
  order: 1;
}
/*====================== Image Wrapper =======================*/
.showcase-image {
  position: relative;
  background: #fff;
  padding: 14px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
  transition: 0.45s;
}
.showcase-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.15);
}
/*====================== Browser Header =======================*/
.showcase-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 42px;
  background: #f5f5f5;
  border-radius: 22px 22px 0 0;
  z-index: 2;
}
.showcase-image::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow:
    20px 0 #febc2e,
    40px 0 #28c840;
  z-index: 3;
}
/*====================== Image =======================*/
.showcase-image img {
  width: 100%;
  height: 480px;
  display: block;
  margin-top: 28px;
  object-fit: cover;
  object-position: top;
  border-radius: 14px;
  transition: 0.45s;
}
.showcase-image:hover img {
  transform: scale(1.04);
}
/*====================== Live Badge =======================*/
.live-badge {
  position: absolute;
  top: 58px;
  right: 20px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1e235c;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  animation: badgeFloat 3s ease-in-out infinite;
  z-index: 10;
}
.live-badge i {
  color: #f60525;
  font-size: 18px;
}
/*====================== Animation =======================*/
@keyframes blobFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}
@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/*======================== RIGHT CONTENT =========================*/
.secondcol {
  padding-left: 50px;
}
.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: #fff5f6;
  color: #f60525;
  font-weight: 600;
  border: 1px solid rgba(246, 5, 37, 0.12);
  margin-bottom: 20px;
}
.project-tag i {
  font-size: 18px;
}
.project-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #1e235c;
  margin-bottom: 20px;
}
.project-title span {
  display: block;
  color: #f60525;
}
.project-desc {
  color: #666;
  line-height: 1.9;
  margin-bottom: 35px;
}
/*======================== FEATURE GRID =========================*/
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.feature-card {
  position: relative;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #ececec;
  transition: 0.4s;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
/* Top Border Animation */
.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f60525, #1e235c);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.45s;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.feature-card i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 5, 37, 0.08);
  color: #f60525;
  font-size: 26px;
  margin-bottom: 18px;
  transition: 0.4s;
}
.feature-card:hover i {
  background: #f60525;
  color: #fff;
  transform: rotate(10deg) scale(1.08);
}
.feature-card h5 {
  font-size: 19px;
  font-weight: 700;
  color: #1e235c;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
/*======================== PROJECT META =========================*/
.project-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 40px 0;
}
.project-meta div {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 18px 20px;
  transition: 0.35s;
}
.project-meta div:hover {
  transform: translateY(-6px);
  border-color: #f60525;
  box-shadow: 0 15px 35px rgba(246, 5, 37, 0.12);
}
.project-meta span {
  display: block;
  color: #888;
  font-size: 13px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.project-meta h6 {
  margin: 0;
  color: #1e235c;
  font-size: 17px;
  font-weight: 700;
}
.project-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-project,
.btn-project-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 56px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
}
.btn-project {
  background: #f60525;
  color: #fff;
  box-shadow: 0 12px 30px rgba(246, 5, 37, 0.25);
}
.btn-project:hover {
  background: #1e235c;
  color: #fff;
  transform: translateY(-5px);
}
.btn-project-outline {
  border: 2px solid #1e235c;
  color: #1e235c;
  background: #fff;
}
.btn-project-outline:hover {
  background: #1e235c;
  color: #fff;
  transform: translateY(-5px);
}
/*======================== FLOATING EFFECT =========================*/
.showcase-image {
  animation: imageFloat 5s ease-in-out infinite;
}
.feature-card:nth-child(1) {
  animation: cardFloat 5s ease-in-out infinite;
}
.feature-card:nth-child(2) {
  animation: cardFloat 5s ease-in-out infinite 0.5s;
}
.feature-card:nth-child(3) {
  animation: cardFloat 5s ease-in-out infinite 1s;
}
.feature-card:nth-child(4) {
  animation: cardFloat 5s ease-in-out infinite 1.5s;
}
@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
/*======================== HOVER EFFECTS =========================*/
.project-title span {
  transition: 0.4s;
}
.secondcol:hover .project-title span {
  letter-spacing: 1px;
}
.project-meta div:hover h6 {
  color: #f60525;
}
.project-tag {
  transition: 0.35s;
}
.project-tag:hover {
  transform: translateX(6px);
}
/*======================== RESPONSIVE =========================*/

/*==================================== TECH STACK ====================================*/
.tech-stack-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fd, #eef3ff);
  position: relative;
  overflow: hidden;
}
/* Background Shapes */
.tech-stack-section::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(251, 2, 34, 0.06);
  border-radius: 50%;
  top: -180px;
  left: -120px;
  filter: blur(20px);
}
.tech-stack-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(26, 26, 77, 0.05);
  border-radius: 50%;
  bottom: -150px;
  right: -120px;
  filter: blur(20px);
}
/* SVG */
.tech-wave-top,
.tech-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
}
.tech-wave-top {
  top: 0;
}
.tech-wave-bottom {
  bottom: -2px;
  transform: rotate(180deg);
}
.tech-wave-top svg,
.tech-wave-bottom svg {
  width: 100%;
  height: 65px;
}
/* Slider */
.tech-slider {
  overflow: hidden;
  position: relative;
}
.tech-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: techScroll 28s linear infinite;
}
.tech-slider:hover .tech-track {
  animation-play-state: paused;
}
/* Cards */
.tech-item {
  width: 190px;
  height: 180px;
  margin: 15px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.45s;
}
/* Red Line */
.tech-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 4px;
  background: #fb0222;
  transition: 0.45s;
}
.tech-item:hover::before {
  width: 100%;
}
/* Shine */
.tech-item::after {
  content: "";
  position: absolute;
  top: -150%;
  left: -60%;
  width: 45%;
  height: 300%;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(25deg);
  transition: 0.7s;
}
.tech-item:hover::after {
  left: 130%;
}
/* Logo */
.tech-item img {
  height: 65px;
  transition: 0.45s;
  animation: floatLogo 3s ease-in-out infinite;
}
.tech-item:hover img {
  transform: rotate(-10deg) scale(1.15);
  filter: drop-shadow(0 10px 15px rgba(251, 2, 34, 0.35));
}
/* Text */
.tech-item h6 {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a4d;
  transition: 0.3s;
}
.tech-item:hover h6 {
  color: #fb0222;
}
/* Hover */
.tech-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(26, 26, 77, 0.18);
  border-color: rgba(251, 2, 34, 0.35);
}
/* Floating Logo */
@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
/* Slider */
@keyframes techScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Mobile */

/*========================================= INDUSTRY TIMELINE SECTION =========================================*/
.industry-timeline-section {
  position: relative;
  padding: 30px 0;
  background: #fff;
  overflow: hidden;
  z-index: 1;
}
/*============================== FLOATING SHAPES ==============================*/
.shape-circle {
  position: absolute;
  border-radius: 50%;
  animation: floatCircle 8s ease-in-out infinite;
}
.shape-circle.one {
  width: 180px;
  height: 180px;
  background: rgba(251, 2, 34, 0.05);
  top: 120px;
  left: -70px;
}
.shape-circle.two {
  width: 120px;
  height: 120px;
  background: rgba(26, 26, 77, 0.05);
  right: 8%;
  top: 25%;
}
.shape-circle.three {
  width: 250px;
  height: 250px;
  background: rgba(251, 2, 34, 0.03);
  right: -120px;
  bottom: 0;
}
.plus-shape {
  position: absolute;
  width: 24px;
  height: 24px;
}
.plus-shape::before,
.plus-shape::after {
  content: "";
  position: absolute;
  background: #fb0222;
}
.plus-shape::before {
  width: 24px;
  height: 3px;
  top: 10px;
}
.plus-shape::after {
  width: 3px;
  height: 24px;
  left: 10px;
}
.plus1 {
  top: 220px;
  right: 10%;
  animation: rotatePlus 8s linear infinite;
}
.plus2 {
  bottom: 140px;
  left: 8%;
  animation: rotatePlus 10s linear infinite;
}
/*================================== TIMELINE ==================================*/
.industry-timeline {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}
/* Vertical Line */
.industry-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  transform: translateX(-50%);
  border-radius: 20px;
  background: linear-gradient(to bottom, #1a1a4d, #fb0222, #1a1a4d);
}
/* Moving Light */
.industry-timeline::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 80px;
  border-radius: 50px;
  background: linear-gradient(to bottom, transparent, #fb0222, transparent);
  animation: lineGlow 5s linear infinite;
  filter: blur(1px);
}
/*========================= ITEM =========================*/
.timeline-item {
  width: 50%;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}
.timeline-item.left {
  padding-right: 70px;
  justify-content: flex-end;
}
.timeline-item.right {
  margin-left: 50%;
  padding-left: 70px;
  justify-content: flex-start;
}
/*========================= CONTENT =========================*/
.timeline-content {
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  position: relative;
  border: 1px solid rgba(26, 26, 77, 0.08);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  transition: 0.45s;
  overflow: hidden;
}
/* Shine */
.timeline-content::before {
  content: "";
  position: absolute;
  top: -130%;
  left: -40%;
  width: 45%;
  height: 320%;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(25deg);
  transition: 0.8s;
}
.timeline-content:hover::before {
  left: 130%;
}
/* Top Border */
.timeline-content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 4px;
  background: #fb0222;
  transition: 0.45s;
}
.timeline-content:hover::after {
  width: 100%;
}
.timeline-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(26, 26, 77, 0.12);
}
.timeline-content h4 {
  color: #1a1a4d;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: 0.3s;
}
.timeline-content:hover h4 {
  color: #fb0222;
}
.timeline-content p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}
/*===================================== TIMELINE DOT ======================================*/
.timeline-dot {
  position: absolute;
  top: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  z-index: 20;
}
.timeline-item.left .timeline-dot {
  right: -40px;
}
.timeline-item.right .timeline-dot {
  left: -40px;
}
/*=========================== ICON ===========================*/
.timeline-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a4d, #30307f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  position: relative;
  transition: 0.45s;
  box-shadow: 0 15px 35px rgba(26, 26, 77, 0.25);
}
/* Rotating Ring */
.timeline-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(251, 2, 34, 0.45);
  border-radius: 50%;
  animation: rotateRing 10s linear infinite;
}
/* Pulse Ring */
.timeline-icon::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(251, 2, 34, 0.18);
  animation: pulseRing 2s infinite;
}
/* Hover */
.timeline-item:hover .timeline-icon {
  background: #fb0222;
  transform: rotate(-10deg) scale(1.12);
  box-shadow: 0 20px 45px rgba(251, 2, 34, 0.35);
}
/*================================= Connector Line =================================*/
.timeline-item.left .timeline-dot::before {
  content: "";
  position: absolute;
  left: -70px;
  top: 50%;
  width: 70px;
  height: 2px;
  background: #d7d7d7;
  transform: translateY(-50%);
  transition: 0.4s;
}
.timeline-item.right .timeline-dot::before {
  content: "";
  position: absolute;
  right: -70px;
  top: 50%;
  width: 70px;
  height: 2px;
  background: #d7d7d7;
  transform: translateY(-50%);
  transition: 0.4s;
}
.timeline-item:hover .timeline-dot::before {
  background: #fb0222;
}
/*================================= Floating Decoration =================================*/
.timeline-content .mini-dot {
  display: none;
}
/*================================= Animations =================================*/
@keyframes rotateRing {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes floatCircle {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes rotatePlus {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes lineGlow {
  0% {
    top: -80px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
  padding: 90px 0;
  background-color: #f8f9fc;
}
.section-subtitle {
  color: #666666;
  font-size: 15px;
  max-width: 560px;
  margin: 14px auto 0;
}
/* Filter buttons */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.portfolio-filter button {
  background-color: #ffffff;
  border: 1px solid #e5e5ef;
  color: #1a1a4d;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}
.portfolio-filter button:hover {
  background-color: #f0f0fa;
}
.portfolio-filter button.active {
  background: linear-gradient(135deg, #7b1e3d, #4a1b6d);
  color: #ffffff;
  border-color: transparent;
}
/* Fade-out/in when filtering */
.portfolio-item {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.portfolio-item.hide {
  display: none;
}
/* Project card */
.project-box {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.project-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-box:hover .project-img img {
  transform: scale(1.12);
}
/* Overlay slides up on hover */
.project-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 22px 20px;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 77, 0) 0%,
    rgba(26, 26, 77, 0.95) 75%
  );
  color: #ffffff;
  transform: translateY(20%);
  opacity: 0;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}
.project-box:hover .project-overlay {
  transform: translateY(0);
  opacity: 1;
}
.project-cat {
  display: inline-block;
  background-color: #7b1e3d;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.project-overlay h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
}
.project-btns {
  display: flex;
  gap: 10px;
}
.project-btns a {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.35s ease;
}
.project-box:hover .project-btns a {
  transform: translateY(0);
  opacity: 1;
}
.project-btns a:nth-child(2) {
  transition-delay: 0.08s;
}
.project-btns a:hover {
  background-color: #ffffff;
  color: #1a1a4d;
}
/*==================================== Responsive================================== */
@media (max-width: 991px) {
  .portfolio-hero {
    padding: 130px 0 100px;
    text-align: center;
  }
  .portfolio-hero h1 {
    font-size: 42px;
  }
  .hero-img {
    margin-top: 40px;
    max-width: 330px;
  }
  .navbarportfolio {
    align-items: center;
    justify-content: center;
    display: flex;
  }
  .firstcol {
    order: 2;
  }
}
@media (max-width: 576px) {
  .portfolio-hero h1 {
    font-size: 34px;
  }
}
@media (max-width: 991px) {
  .secondcol {
    padding-left: 0;
    margin-top: 40px;
  }
  .project-title {
    font-size: 38px;
  }
  .showcase-image img {
    height: auto;
  }
  .project-buttons {
    justify-content: center;
  }
  .project-meta {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .project-showcase {
    padding: 70px 0;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .project-meta {
    grid-template-columns: 1fr;
  }
  .project-title {
    font-size: 30px;
    line-height: 1.3;
  }
  .project-desc {
    font-size: 15px;
  }
  .btn-project,
  .btn-project-outline {
    width: 100%;
  }
  .live-badge {
    right: 15px;
    top: 55px;
    font-size: 13px;
    padding: 8px 14px;
  }
  .showcase-image {
    padding: 10px;
  }
  .showcase-image img {
    margin-top: 25px;
  }
}
@media (max-width: 480px) {
  .project-title {
    font-size: 26px;
  }
  .feature-card {
    padding: 18px;
  }
  .feature-card i {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .project-meta div {
    padding: 16px;
  }
}
@media (max-width: 768px) {
  .tech-item {
    width: 150px;
    height: 150px;
    margin: 10px;
  }
  .tech-item img {
    height: 50px;
  }
  .tech-item h6 {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .industry-timeline::before {
    left: 40px;
  }
  .industry-timeline::after {
    left: 40px;
  }
  .timeline-item,
  .timeline-item.right {
    width: 100%;
    margin-left: 0;
    padding-left: 95px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .timeline-item.left {
    padding-left: 95px;
  }
  .timeline-dot {
    left: 0 !important;
    right: auto !important;
    width: 80px;
    height: 80px;
  }
  .timeline-dot::before {
    display: none;
  }
  .timeline-content {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .industry-timeline-section {
    padding: 80px 0;
  }
  .timeline-content {
    padding: 22px;
    border-radius: 18px;
  }
  .timeline-content h4 {
    font-size: 20px;
  }
  .timeline-content p {
    font-size: 14px;
  }
  .timeline-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .timeline-dot {
    width: 65px;
    height: 65px;
  }
  .shape-circle {
    display: none;
  }
  .plus-shape {
    display: none;
  }
}
@media (max-width: 991px) {
  .portfolio-section {
    padding: 60px 0;
  }
  .project-img {
    height: 230px;
  }
}
@media (max-width: 576px) {
  .portfolio-filter button {
    font-size: 12px;
    padding: 8px 16px;
  }
  .project-img {
    height: 210px;
  }
  .project-overlay {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(
      180deg,
      rgba(26, 26, 77, 0.1) 0%,
      rgba(26, 26, 77, 0.95) 60%
    );
  }
  .project-btns a {
    transform: translateY(0);
    opacity: 1;
  }
}
