/*
====================================
 Portfolio New Template Styles (Flat, Creative, Smooth)
====================================
- Flat theme colors only (no gradients)
- Creative, modern, smooth look
- Responsive and beautiful
*/

:root {
  --brand-orange: #f28e00;
  --brand-orange-light: #ff9f1c;
  --brand-orange-dark: #e67e00;
  --brand-black: #313131;
  --brand-grey: #888;
  --brand-dark-grey: #333;
  --brand-light-grey: #f9f9f9;
  --brand-font-main: 'Inter', sans-serif;
  --brand-font-heading: 'Josefin Sans', sans-serif;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.07);
  --shadow-hover: 0 20px 40px rgba(0,0,0,0.10);
  --shadow-glow: 0 5px 20px rgba(242,142,0,0.18);
  --shadow-text: 0 2px 5px rgba(0,0,0,0.08);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 30px;
  --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

body.portfolio-page {
  font-family: var(--brand-font-main);
  color: var(--brand-dark-grey);
  background: #f9f9f9;
  overflow-x: hidden;
}

/* --- Hero Banner Styles --- */
.smart-hero-banner {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  background: #181c24;
}
.smart-hero-banner__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: none !important;
  transform: none !important;
}
.smart-hero-banner__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(24,28,36,0.8) 60%, rgba(24,28,36,0.5) 100%);
  z-index: 2;
}
.smart-hero-banner__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 40px 24px;
  text-align: center;
  background: linear-gradient(135deg, #fff7e6 70%, #ffe0b2 100%);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(242,142,0,0.10);
  padding: 2.5rem 1.5rem 1.2rem 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.smart-hero-banner__container::before,
.creative-hero-banner__content::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at 60% 40%, #ffe0b2 0%, #fff7e6 60%, transparent 100%);
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}
.smart-hero-banner__heading,
.creative-hero-banner__heading {
  color: #f28e00;
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}
.creative-hero-banner__accent {
  width: 60px;
  height: 5px;
  background: #f28e00;
  border-radius: 3px;
  margin: 0 auto 18px auto;
  position: relative;
  z-index: 2;
}
.smart-hero-banner__subheading,
.creative-hero-banner__subheading {
  color: #e67e00;
  font-size: 1.15rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.smart-hero-banner__meta,
.creative-hero-banner__meta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}
.creative-hero-banner__tag {
  background: #f28e00;
  color: #fff;
  font-size: 1.05rem;
  padding: 7px 20px;
  border-radius: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px 0 rgba(242,142,0,0.08);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}
.meta-label {
  font-weight: 700;
  color: #232323;
  margin-right: 4px;
  font-size: 1.05em;
  letter-spacing: 0.2px;
}
.hero-content-main {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    width: 100%;
}
.p-mobile{
display:none;
}

.p-Desktop{
	display:flex;
}

.container{
		padding: 0 1rem;
	}
@media (max-width: 900px) {
		.p-mobile{
		display:block;
		}

		.p-Desktop{
			display:none;
		} 
	
		.portfolio-hero-img-classic, .portfolio-hero-card-classic {
			max-width: 95vw;
			color: #fff;
		}
	
}
@media (max-width: 600px) {

  .creative-hero-banner__tag {
    font-size: 0.95rem;
    padding: 5px 10px;
    border-radius: 12px;
    gap: 3px;
  }
  .meta-label {
    font-size: 1em;
  }
  .smart-hero-banner__meta, .creative-hero-banner__meta {
    flex-direction: column;
    gap: 7px;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .smart-hero-banner__container,
  .creative-hero-banner__content {
    padding: 1.1rem 0.3rem 0.7rem 0.3rem;
    border-radius: 12px;
  }
  .creative-hero-banner__accent {
    width: 36px;
    height: 4px;
    margin-bottom: 12px;
  }
}

/* --- Creative Hero Banner Styles --- */
.creative-hero-banner__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 16px 32px 16px;
  max-width: 700px;
  margin: 0 auto;
}

span.portfolio-hero-meta-value {
    color: #f28e00;
}


.creative-hero-banner__img-wrap {
  width: 180px;
  height: 180px;
  margin-bottom: 28px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.18);
  background: #23272f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.creative-hero-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.creative-hero-banner__content {
  text-align: center;
  width: 100%;
  background: linear-gradient(135deg, #fff7e6 70%, #ffe0b2 100%);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(242,142,0,0.10);
  padding: 2.5rem 1.5rem 1.2rem 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.creative-hero-banner__heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: -1px;
}

.creative-hero-banner__accent {
  width: 60px;
  height: 5px;
  background: #f28e00;
  border-radius: 3px;
  margin: 0 auto 18px auto;
}

.creative-hero-banner__subheading {
  font-size: 1.15rem;
  color: #e67e00;
  margin-bottom: 18px;
}

.creative-hero-banner__meta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.creative-hero-banner__tag {
  background: #f28e00;
  color: #fff;
  font-size: 0.98rem;
  padding: 6px 18px;
  border-radius: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px 0 rgba(242,142,0,0.08);
}

@media (max-width: 600px) {
  .creative-hero-banner__img-wrap {
    width: 120px;
    height: 120px;
    margin-bottom: 18px;
  }
  .creative-hero-banner__heading {
    font-size: 1.5rem;
  }
  .creative-hero-banner__accent {
    width: 36px;
    height: 4px;
    margin-bottom: 12px;
  }
  .creative-hero-banner__subheading {
    font-size: 1rem;
  }
}

/* ===================================
   Hero Banner Section - Ultra Creative
==================================== */
.hero-banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-family: var(--brand-font-heading);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Remove the overlay effect from hero banner */
.hero-banner::before {
  display: none !important;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: float 15s infinite linear;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.hero-matrix-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
}

.hero-geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="none" stroke="%23f28e00" stroke-width="0.5" opacity="0.3"/><circle cx="20" cy="20" r="15" fill="none" stroke="%23f28e00" stroke-width="0.5" opacity="0.2"/><rect x="70" y="15" width="20" height="20" fill="none" stroke="%23f28e00" stroke-width="0.5" opacity="0.2"/></svg>') repeat;
  animation: geometricMove 20s linear infinite;
  z-index: 1;
}

.hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(242,142,0,0.1) 1px, transparent 1px),
              linear-gradient(90deg, rgba(242,142,0,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridPulse 4s ease-in-out infinite;
  z-index: 1;
}

.hero-banner__overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.hero-banner__content {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 1000px;
  background: rgba(20, 20, 20, 0.68); /* darker background for contrast */
  backdrop-filter: blur(10px);
  border: 1.5px solid #ffb347; /* light orange border */
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 24px 0 #ffb34755, inset 0 1px 0 rgba(255,255,255,0.1);
  animation: heroEntrance 2s cubic-bezier(0.68, -0.6, 0.32, 1.6) 0.3s both;
  position: relative;
}

.hero-banner__content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffb347, transparent, #ffb347);
  border-radius: var(--border-radius-lg);
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite;
  opacity: 0.7;
}

.hero-title-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.hero-split-text {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-family: var(--brand-font-heading);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  text-shadow: 0 0 20px rgba(242,142,0,0.5);
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #fff, var(--brand-orange), #fff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s ease-in-out infinite;
}

.hero-title-shadow {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-family: var(--brand-font-heading);
  font-weight: 900;
  color: rgba(242,142,0,0.3);
  letter-spacing: -2px;
  z-index: -1;
  animation: shadowFloat 4s ease-in-out infinite;
}

.hero-banner__content p {
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  margin-bottom: 0rem;
  color: rgba(255,255,255,0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-banner__btn, .pulse-btn, .live-project-btn {
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
  color: #fff;
  padding: 1.2em 3.5em;
  border-radius: var(--border-radius-lg);
  font-weight: 700;
  font-family: var(--brand-font-main);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(242,142,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
  transition: all var(--transition-bounce);
  border: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: translateY(0) scale(1);
  text-decoration: none;
}

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

.hero-banner__btn:hover::before {
  left: 100%;
}

.hero-banner__btn:hover, .pulse-btn:hover, .live-project-btn:hover {
  background: linear-gradient(135deg, var(--brand-black) 0%, var(--brand-dark-grey) 100%);
  color: var(--brand-orange);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(242,142,0,0.6);
  transform: translateY(-8px) scale(1.05);
}

.hero-banner__btn:active, .pulse-btn:active, .live-project-btn:active {
  transform: translateY(-4px) scale(1.02);
}

.btn-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-meta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0 2rem 0;
  animation: fadeInUp 1.5s ease 1s both;
}

.hero-meta-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(242,142,0,0.3);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 2rem;
  text-align: center;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.hero-meta-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(242,142,0,0.2), transparent);
  transition: left 0.8s ease;
}

.hero-meta-item:hover::before {
  left: 100%;
}

.hero-meta-item:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(242,142,0,0.6);
  box-shadow: 0 15px 35px rgba(242,142,0,0.3);
}

.meta-label {
  display: block;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--brand-font-main);
}

.meta-value {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--brand-orange);
  font-weight: 700;
  font-family: var(--brand-font-heading);
  text-shadow: 0 0 10px rgba(242,142,0,0.3);
}

/* Center the scroll-arrow horizontally in the hero-scroll-indicator */
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  animation: fadeInUp 2s ease 1.5s both;
  margin-top: 2rem;
}
.scroll-arrow {
  margin-left: auto;
  margin-right: auto;
}

.scroll-arrow {
  width: 0px;
  height: 30px;
  background: var(--brand-orange);
  position: relative;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--brand-orange);
  border-bottom: 2px solid var(--brand-orange);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0) rotate(-45deg); }
  50% { transform: translateY(18px) rotate(-45deg); }
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  transform: scale(0);
  animation: ripple 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

/* Remove gradient overlays from buttons */
.hero-banner__btn::before, .pulse-btn::before, .live-project-btn::before {
  display: none;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.float-shape {
  position: absolute;
  opacity: 0.6;
}

.float-circle {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--brand-orange), transparent);
  border-radius: 50%;
  top: 20%;
  left: 10%;
  animation: floatCircle 15s ease-in-out infinite;
}

.float-triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid rgba(242,142,0,0.4);
  top: 60%;
  right: 15%;
  animation: floatTriangle 12s ease-in-out infinite;
}

.float-square {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--brand-orange), transparent);
  top: 30%;
  right: 25%;
  animation: floatSquare 18s ease-in-out infinite;
  transform: rotate(45deg);
}

.float-hexagon {
  width: 50px;
  height: 50px;
  background: var(--brand-orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  top: 70%;
  left: 20%;
  animation: floatHexagon 20s ease-in-out infinite;
  opacity: 0.3;
}

.float-diamond {
  width: 40px;
  height: 40px;
  background: var(--brand-orange);
  transform: rotate(45deg);
  top: 15%;
  right: 40%;
  animation: floatDiamond 14s ease-in-out infinite;
  opacity: 0.4;
}

.hero-glitch {
  position: relative;
}

.hero-glitch.glitch-active::before,
.hero-glitch.glitch-active::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #fff, var(--brand-orange), #fff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-glitch.glitch-active::before {
  animation: glitch-1 0.3s, textShimmer 3s ease-in-out infinite;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-3px, 3px);
  filter: hue-rotate(90deg);
}

.hero-glitch.glitch-active::after {
  animation: glitch-2 0.3s, textShimmer 3s ease-in-out infinite;
  z-index: -2;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  transform: translate(3px, -3px);
  filter: hue-rotate(180deg);
}

@keyframes glitch-1 {
  0%, 14%, 15%, 49%, 50%, 99%, 100% { transform: translate(0); }
  1%, 13% { transform: translate(-3px, 3px); }
  16%, 48% { transform: translate(3px, -3px); }
  51%, 98% { transform: translate(-2px, 2px); }
}

@keyframes glitch-2 {
  0%, 20%, 21%, 62%, 63%, 99%, 100% { transform: translate(0); }
  1%, 19% { transform: translate(3px, -3px); }
  22%, 61% { transform: translate(-3px, 3px); }
  64%, 98% { transform: translate(2px, -2px); }
}

@keyframes textShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes shadowFloat {
  0%, 100% { transform: translate(8px, 8px); }
  50% { transform: translate(12px, 4px); }
}

@keyframes geometricMove {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-100px) translateY(-100px); }
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.3; }
}

@keyframes floatCircle {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(50px, -30px) rotate(120deg); }
  66% { transform: translate(-30px, 40px) rotate(240deg); }
}

@keyframes floatTriangle {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-40px, -50px) rotate(180deg); }
}

@keyframes floatSquare {
  0%, 100% { transform: translate(0, 0) rotate(45deg); }
  25% { transform: translate(30px, -20px) rotate(135deg); }
  75% { transform: translate(-20px, 30px) rotate(315deg); }
}

@keyframes floatHexagon {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(60px, -40px) rotate(180deg) scale(1.2); }
}

@keyframes floatDiamond {
  0%, 100% { transform: translate(0, 0) rotate(45deg); }
  33% { transform: translate(-25px, 35px) rotate(135deg); }
  66% { transform: translate(35px, -25px) rotate(225deg); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes objectivesBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  33% { transform: translateX(-10px) translateY(-15px) rotate(1deg); }
  66% { transform: translateX(10px) translateY(-10px) rotate(-1deg); }
}

@keyframes objectivesFloatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(-20px, -30px) rotate(90deg) scale(1.1); }
  50% { transform: translate(30px, -20px) rotate(180deg) scale(0.9); }
  75% { transform: translate(-10px, 20px) rotate(270deg) scale(1.05); }
}

@keyframes challengesBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  33% { transform: translateX(-15px) translateY(-10px) rotate(1deg); }
  66% { transform: translateX(15px) translateY(-15px) rotate(-1deg); }
}

@keyframes challengesFloatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  30% { transform: translate(-25px, -35px) rotate(120deg) scale(1.1); }
  60% { transform: translate(35px, -25px) rotate(240deg) scale(0.9); }
}

@keyframes challengesImageGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.03); }
}

@keyframes solutionsBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  35% { transform: translateX(12px) translateY(-18px) rotate(-1deg); }
  70% { transform: translateX(-18px) translateY(12px) rotate(1deg); }
}

@keyframes solutionsFloatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  40% { transform: translate(30px, -25px) rotate(144deg) scale(1.05); }
  80% { transform: translate(-25px, 30px) rotate(288deg) scale(0.95); }
}

@keyframes solutionsImageGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.03); }
}

@keyframes uiHighlightsBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  33% { transform: translateX(-8px) translateY(-12px) rotate(0.5deg); }
  66% { transform: translateX(12px) translateY(-8px) rotate(-0.5deg); }
}

@keyframes uiHighlightsFloatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(-15px, -25px) rotate(90deg) scale(1.05); }
  50% { transform: translate(25px, -15px) rotate(180deg) scale(0.95); }
  75% { transform: translate(-10px, 25px) rotate(270deg) scale(1.02); }
}

@keyframes keyFeaturesBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  25% { transform: translateX(-10px) translateY(-15px) rotate(0.5deg); }
  50% { transform: translateX(15px) translateY(-10px) rotate(-0.5deg); }
  75% { transform: translateX(-5px) translateY(10px) rotate(0.3deg); }
}

@keyframes keyFeaturesFloatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  20% { transform: translate(-20px, -30px) rotate(72deg) scale(1.1); }
  40% { transform: translate(30px, -20px) rotate(144deg) scale(0.9); }
  60% { transform: translate(-15px, 30px) rotate(216deg) scale(1.05); }
  80% { transform: translate(25px, -10px) rotate(288deg) scale(0.95); }
}

@keyframes seoImpactBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  25% { transform: translateX(-12px) translateY(-8px) rotate(0.3deg); }
  50% { transform: translateX(8px) translateY(-12px) rotate(-0.3deg); }
  75% { transform: translateX(-6px) translateY(8px) rotate(0.2deg); }
}

@keyframes seoImpactFloatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  30% { transform: translate(-18px, -25px) rotate(108deg) scale(1.08); }
  60% { transform: translate(25px, -18px) rotate(216deg) scale(0.92); }
}

@keyframes summaryBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  50% { transform: translateX(-5px) translateY(-8px) rotate(0.2deg); }
}

@keyframes summaryFloatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(-20px, -15px) rotate(180deg) scale(1.1); }
}

@keyframes feedbackBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  33% { transform: translateX(-3px) translateY(-5px) rotate(0.1deg); }
  66% { transform: translateX(5px) translateY(-3px) rotate(-0.1deg); }
}

@keyframes quoteFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-50%) translateY(-10px) scale(1.02); }
}

@keyframes whyDitBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  25% { transform: translateX(-8px) translateY(-6px) rotate(0.3deg); }
  75% { transform: translateX(6px) translateY(-8px) rotate(-0.3deg); }
}

@keyframes whyDitFloatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  40% { transform: translate(-15px, -20px) rotate(144deg) scale(1.05); }
  80% { transform: translate(20px, -15px) rotate(288deg) scale(0.95); }
}

@keyframes techBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  30% { transform: translateX(-4px) translateY(-7px) rotate(0.2deg); }
  70% { transform: translateX(7px) translateY(-4px) rotate(-0.2deg); }
}

@keyframes techFloatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  35% { transform: translate(-12px, -18px) rotate(126deg) scale(1.08); }
  65% { transform: translate(18px, -12px) rotate(252deg) scale(0.92); }
}

@keyframes mobileBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  40% { transform: translateX(-6px) translateY(-4px) rotate(0.15deg); }
  80% { transform: translateX(4px) translateY(-6px) rotate(-0.15deg); }
}

@keyframes mobileFloatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  45% { transform: translate(-10px, -15px) rotate(162deg) scale(1.06); }
  90% { transform: translate(15px, -10px) rotate(324deg) scale(0.94); }
}

@keyframes mobileIconFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
  50% { transform: translateX(-50%) translateY(-5px) rotate(5deg); }
}

@keyframes feedbackBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  33% { transform: translateX(-8px) translateY(-6px) rotate(0.2deg); }
  66% { transform: translateX(6px) translateY(-8px) rotate(-0.2deg); }
}

@keyframes whyDitBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  25% { transform: translateX(-10px) translateY(-8px) rotate(0.3deg); }
  75% { transform: translateX(8px) translateY(-10px) rotate(-0.3deg); }
}

@keyframes techBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  30% { transform: translateX(-6px) translateY(-9px) rotate(0.2deg); }
  70% { transform: translateX(9px) translateY(-6px) rotate(-0.2deg); }
}

@keyframes mobileBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  40% { transform: translateX(-8px) translateY(-5px) rotate(0.15deg); }
  80% { transform: translateX(5px) translateY(-8px) rotate(-0.15deg); }
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.7) rotateX(15deg);
    filter: blur(10px);
  }
  30% {
    opacity: 0.6;
    transform: translateY(-20px) scale(1.1) rotateX(-5deg);
    filter: blur(5px);
  }
  70% {
    opacity: 0.9;
    transform: translateY(10px) scale(0.95) rotateX(2deg);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0px);
  }
}

.typewriter {
  overflow: hidden;
  border-right: 3px solid #fff;
  white-space: nowrap;
  animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
  display: inline-block;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #fff; }
}

/* Floating shapes */
.shape {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}

.shape-1 {
  width: 120px;
  height: 120px;
  background: var(--brand-orange);
  border-radius: 50%;
  animation: float-1 20s infinite ease-in-out;
}

.shape-2 {
  width: 80px;
  height: 80px;
  background: var(--brand-orange-light);
  transform: rotate(45deg);
  animation: float-2 25s infinite ease-in-out;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, transparent 40%, var(--brand-orange) 40%, var(--brand-orange) 60%, transparent 60%);
  animation: float-3 30s infinite ease-in-out;
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-150px) rotate(180deg); }
}

@keyframes float-2 {
  0%, 100% { transform: translateX(0px) rotate(45deg); }
  50% { transform: translateX(150px) rotate(225deg); }
}

@keyframes float-3 {
  0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
  33% { transform: translateY(-120px) translateX(120px) rotate(120deg); }
  66% { transform: translateY(120px) translateX(-120px) rotate(240deg); }
}

/* ===================================
   About Brand Section - Ultra Modern
==================================== */
.about-brand {
/*   background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
	background: #fff;
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.about-brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(242,142,0,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(242,142,0,0.05) 0%, transparent 50%);
  animation: aboutBgMove 20s ease-in-out infinite;
  z-index: 0;
}

.about-brand::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242,142,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: aboutFloatShape 15s ease-in-out infinite;
  z-index: 0;
}

.about-brand__container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.about-brand__image {
  position: relative;
  justify-self: center;
}

.about-brand__image::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background: linear-gradient(45deg, var(--brand-orange), transparent, var(--brand-orange));
  border-radius: var(--border-radius-lg);
  z-index: -2;
  opacity: 0.3;
  animation: aboutImageGlow 4s ease-in-out infinite;
}



.about-brand__image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--border-radius-lg);
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.1),
    0 10px 30px rgba(242,142,0,0.1);
  transition: all var(--transition-bounce);
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  filter: brightness(1.05) contrast(1.1);
}

.about-brand__image:hover img {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-10px);
  box-shadow: 
    0 30px 80px rgba(0,0,0,0.15),
    0 15px 40px rgba(242,142,0,0.2);
}

.about-brand__text {
  position: relative;
}



.about-brand__text h2 {
  font-family: var(--brand-font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--brand-dark-grey);
  margin-bottom: 1.5rem;
  position: relative;
  line-height: 1.3;
  letter-spacing: -0.5px;
}


.about-brand__text h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.about-brand__text p {
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  color: var(--brand-dark-grey);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  opacity: 0;
  animation: aboutTextFadeIn 1s ease 0.5s forwards;
}

.about-brand__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-brand__stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(242,142,0,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.about-brand__stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(242,142,0,0.1), transparent);
  transition: left 0.6s ease;
}

.about-brand__stat:hover::before {
  left: 100%;
}

.about-brand__stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-brand__stat-number {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--brand-orange);
  font-family: var(--brand-font-heading);
  margin-bottom: 0.5rem;
  display: block;
}

.about-brand__stat-label {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--brand-dark-grey);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   Project Objectives - Creative Design
==================================== */
.portfolio-objectives {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.portfolio-objectives::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, #f9f9f914 0%, transparent 50%), radial-gradient(circle at 80% 20%, #f9f9f90d 0%, transparent 50%);	
  z-index: 0;
}

.portfolio-objectives .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  color: #131313;
  font-family: var(--brand-font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--brand-dark-grey);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 3rem;
  text-align: center;
  font-family: var(--brand-font-main);
}

.objectives-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.objectives-list li {
  background: #fff;
  border: 1px solid rgba(242,142,0,0.1);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 2.5rem 2rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-bounce);
  color: var(--brand-dark-grey);
  line-height: 1.6;
}

.objectives-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.objectives-list li:hover::before {
  transform: scaleX(1);
}

.objectives-list li:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(242,142,0,0.3);
}

.objective-number {
  position: absolute;
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #ffb347 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.3rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 15px 40px rgba(242,142,0,0.4),
    0 5px 15px rgba(242,142,0,0.2);
  font-family: var(--brand-font-heading);
  border: 3px solid #fff;
  transition: all var(--transition-bounce);
}

.objectives-list li:hover .objective-number {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 
    0 20px 50px rgba(242,142,0,0.5),
    0 8px 20px rgba(242,142,0,0.3);
}
@media (max-width: 991px) {
  .objectives-list {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 767px) {
  .portfolio-objectives {
    padding: 4rem 0 3rem 0;
  }
}

@media (max-width: 600px) {
  .portfolio-objectives {
    padding: 3rem 0 2rem 0;
  }
  
  .objectives-list li {
    padding: 2rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .objective-number {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    top: -15px;
    right: -15px;
    border-width: 2px;
  }
}

.objective-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(242,142,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brand-orange);
  transition: all var(--transition-fast);
}

.objectives-list li:hover .objective-icon {
  background: var(--brand-orange);
  color: #fff;
  transform: scale(1.1) rotate(15deg);
}

.objective-number {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--brand-font-heading);
  box-shadow: 0 5px 15px rgba(242,142,0,0.4);
}

/* ===================================
   Challenges Section - Ultra Modern
==================================== */
.portfolio-challenges {
  background: #fff;
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.portfolio-challenges::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 75%, #f9f9f926 0%, transparent 50%), radial-gradient(circle at 75% 25%, #f9f9f91a 0%, transparent 50%), linear-gradient(135deg, transparent 49%, #f9f9f908 50%, transparent 51%);
  z-index: 0;
}

.portfolio-challenges::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(242,142,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: challengesFloatShape 25s ease-in-out infinite;
  z-index: 0;
}

.challenges-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.portfolio-challenges__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.portfolio-challenges__image {
  position: relative;
  justify-self: center;
}

.portfolio-challenges__image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, rgba(242,142,0,0.3), transparent, rgba(242,142,0,0.3));
  border-radius: var(--border-radius-lg);
  z-index: -1;
  opacity: 0.4;
  animation: challengesImageGlow 5s ease-in-out infinite;
}

.portfolio-challenges__image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--border-radius-lg);
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.4),
    0 10px 30px rgba(255,69,0,0.2);
  transition: all var(--transition-bounce);
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  filter: brightness(1.1) contrast(1.1);
}

.portfolio-challenges__image:hover img {
  transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) translateY(-10px);
  box-shadow: 
    0 35px 70px rgba(0,0,0,0.5),
    0 15px 40px rgba(255,69,0,0.3);
}

.portfolio-challenges__content {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,69,0,0.2);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem 3rem;
  position: relative;
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.portfolio-challenges__content::before {
	content: '';
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    margin: 0 auto;
    height: 4px;
    background: var(--brand-orange);
    border-radius: 2px;
}

.portfolio-challenges__content h2 {
  font-family: var(--brand-font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--brand-dark-grey);
  margin-bottom: 3rem;
  position: relative;
}

.portfolio-challenges__content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.portfolio-challenges__content ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

.portfolio-challenges__content ul li {
  background: #fff;
  border: 1px solid rgba(242, 142, 0, 0.4);
  border-radius: var(--border-radius-md);
  color: rgba(0,0,0,1);
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-family: var(--brand-font-main);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding: 1.2em 1.5em 1.2em 1.5em;
  position: relative;
  transition: all var(--transition-bounce);
}


.portfolio-challenges__content ul li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-md);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.portfolio-challenges__content ul li:hover {
  border-color: rgba(255,69,0,0.4);
  box-shadow: 0 10px 20px rgba(255,69,0,0.2);
}

.portfolio-challenges__content ul li:hover::after {
  opacity: 1;
}

.portfolio-challenges__content ul li:hover::before {
  transform: translateY(-50%) scale(1.2) rotate(10deg);
}

/* ===================================
   Solutions Section - Ultra Modern
==================================== */
.portfolio-solutions {
  background: #fff;
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.portfolio-solutions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: background: radial-gradient(circle at 75% 25%, #f9f9f926 0%, transparent 50%), radial-gradient(circle at 25% 75%, #f9f9f91a 0%, transparent 50%), linear-gradient(45deg, transparent 49%, rgba(242, 142, 0, 0.03) 50%, transparent 51%);
  z-index: 0;
}

.portfolio-solutions::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -25%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(242,142,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: solutionsFloatShape 22s ease-in-out infinite;
  z-index: 0;
}

.solutions-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.portfolio-solutions__container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.portfolio-solutions__content {
	background:# fff;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(242,142,0,0.2);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem 3rem;
  position: relative;
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(136,136,136,0.1);
}

.portfolio-solutions__content::before {
	content: '';
    position: absolute;
    top: 0;
    right: 5%;
    width: 90%;
    margin: 0 auto;
    height: 4px;
    background: var(--brand-orange);
    border-radius: 2px;
}


.portfolio-solutions__content h2 {
  font-family: var(--brand-font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--brand-dark-grey);
  margin-bottom: 3rem;
  position: relative;
}

.portfolio-solutions__content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.portfolio-solutions__content ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

.portfolio-solutions__content ul li {
  background: #fff;
  border: 1px solid rgba(242,142,0,0.4);
  border-radius: var(--border-radius-md);
  color: var(--brand-dark-grey);
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-family: var(--brand-font-main);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding: 1.2em 1.5em 1.2em 1.5em;
  position: relative;
  transition: all var(--transition-bounce);
}


.portfolio-solutions__content ul li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-md);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.portfolio-solutions__content ul li:hover {
  border-color: rgba(242,142,0,0.4);
  box-shadow: 0 10px 30px rgba(242,142,0,0.2);
}

.portfolio-solutions__content ul li:hover::after {
  opacity: 1;
}

.portfolio-solutions__content ul li:hover::before {
  transform: translateY(-50%) scale(1.2) rotate(10deg);
}

.portfolio-solutions__image {
  position: relative;
  justify-self: center;
}

.portfolio-solutions__image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, rgba(242, 142, 0, 0.3), transparent, rgba(242, 142, 0, 0.3));
  border-radius: var(--border-radius-lg);
  z-index: -1;
  opacity: 0.4;
  animation: solutionsImageGlow 5s ease-in-out infinite;
}

.portfolio-solutions__image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(255, 69, 0, 0.2);
  transition: all var(--transition-bounce);
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  filter: brightness(1.1) contrast(1.1);
}

.portfolio-solutions__image:hover img {
  transform: perspective(1000px) rotateY(8deg) rotateX(3deg) translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 15px 40px rgba(255, 69, 0, 0.3);
}
@media (max-width: 990px) {
    .portfolio-solutions__image,
	.portfolio-challenges__image {
  box-shadow: none;
}
	.portfolio-solutions__image img,
	.portfolio-challenges__image img  {
		margin: 0 auto;
		width: 100%;
		border-radius: unset;
		box-shadow: none;
		border: 1px solid rgba(242, 142, 0, 0.4); 
	}
	.portfolio-challenges__image::before,
	.portfolio-solutions__image::before{
		display:none;
	}
	
	.portfolio-solutions__content,
	.portfolio-challenges__content{
		border:opx;
		border-radius:0px;
		 box-shadow: none;
		background: transparent;
	}

}
/* ===================================
   Key Features - Ultra Creative
==================================== */
.portfolio-key-features {
  background: #fff;
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.portfolio-key-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(242,142,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(242,142,0,0.1) 0%, transparent 50%);
  animation: keyFeaturesBgMove 40s ease-in-out infinite;
  z-index: 0;
}

.portfolio-key-features::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(242,142,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: keyFeaturesFloatShape 35s ease-in-out infinite;
  z-index: 0;
}

.key-features-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.portfolio-key-features__title {
  font-family: var(--brand-font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #131313;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.portfolio-key-features__title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.key-features-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--brand-dark-grey);
  text-align: center;
  margin-bottom: 4rem;
  font-family: var(--brand-font-main);
  position: relative;
  z-index: 2;
}

.portfolio-key-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  list-style: none;
  position: relative;
  z-index: 2;
}

.portfolio-key-features__grid li {
  background: #fff;
  border: 1px solid rgba(242,142,0,0.4);
  color: var(--brand-dark-grey);
  font-size: clamp(1rem, 2vw, 1.1rem);
  padding: 1.5em 2em;
  text-transform: capitalize;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  font-family: var(--brand-font-main);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-bounce);
  line-height: 1.6;
}

.portfolio-key-features__grid li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.portfolio-key-features__grid li::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(242,142,0,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

.portfolio-key-features__grid li:hover::before {
  transform: scaleX(1);
}

.portfolio-key-features__grid li:hover::after {
  opacity: 1;
}

.portfolio-key-features__grid li:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: rgba(242,142,0,0.5);
}

.key-feature-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height:  30px;
  background: rgba(242,142,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brand-orange);
  transition: all var(--transition-fast);
}

.portfolio-key-features__grid li:hover .key-feature-icon {
  background: var(--brand-orange);
  color: #fff;
  transform: scale(1.1) rotate(15deg);
}
@media (max-width: 900px) {
	.portfolio-key-features__grid li {
	  padding: 1.5em 2em;
	}
}
/* ===================================
   UI Highlights - Ultra Modern
==================================== */
.portfolio-ui-highlights {
  background: #fff;
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.portfolio-ui-highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 75%, rgba(242,142,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(242,142,0,0.05) 0%, transparent 50%);
  animation: uiHighlightsBgMove 35s ease-in-out infinite;
  z-index: 0;
}

.portfolio-ui-highlights::after {
  content: '';
  position: absolute;
  top: -35%;
  right: -25%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(242,142,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: uiHighlightsFloatShape 30s ease-in-out infinite;
  z-index: 0;
}

.ui-highlights-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.portfolio-ui-highlights__title {
  font-family: var(--brand-font-heading);
  color: #131313;
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.key-feature-icon {
    display: none!important;
}

.portfolio-ui-highlights__title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.ui-highlights-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--brand-dark-grey);
  text-align: center;
  margin-bottom: 4rem;
  font-family: var(--brand-font-main);
  position: relative;
  z-index: 2;
}

.tech-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--brand-dark-grey);
  text-align: center;
  margin-bottom: 4rem;
  font-family: var(--brand-font-main);
  position: relative;
  z-index: 2;
}

.portfolio-ui-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.portfolio-ui-highlights__item {
  background: #fff;
	border: 1px solid rgba(242, 142, 0, 0.2);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
  padding: 3em 2em;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-bounce);
  border-bottom: 4px solid transparent;
}

.portfolio-ui-highlights__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.portfolio-ui-highlights__item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(242,142,0,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

.portfolio-ui-highlights__item:hover::before {
  transform: scaleX(1);
}

.portfolio-ui-highlights__item:hover::after {
  opacity: 1;
}

.portfolio-ui-highlights__item:hover {
/*   transform: translateY(-15px); */
  box-shadow: var(--shadow-hover);
  border-bottom: 4px solid var(--brand-orange);
}

.ui-highlight-icon {
  width: 60px;
  height: 60px;
  background: rgba(242,142,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--brand-orange);
  margin: 0 auto 1.5rem;
  transition: all var(--transition-fast);
}

.portfolio-ui-highlights__item:hover .ui-highlight-icon {
  background: var(--brand-orange);
  color: #fff;
  transform: scale(1.1) rotate(15deg);
}

.portfolio-ui-highlights__item h3 {
  font-family: var(--brand-font-heading);
  color: var(--brand-orange);
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  margin-bottom: 1.2rem;
}

.portfolio-ui-highlights__item p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--brand-dark-grey);
  font-family: var(--brand-font-main);
  line-height: 1.6;
}

/* ===================================
   Project Summary Cards - Ultra Creative
==================================== */
.portfolio-summary-cards {
  background: #fff;
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.portfolio-summary-cards::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: background: radial-gradient(circle at 30% 70%, #f9f9f926 0%, transparent 50%), radial-gradient(circle at 70% 30%, #f9f9f91a 0%, transparent 50%);
  animation: summaryBgMove 50s ease-in-out infinite;
  z-index: 0;
}

.portfolio-summary-cards::after {
  content: '';
  position: absolute;
  top: -25%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242,142,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: summaryFloatShape 45s ease-in-out infinite;
  z-index: 0;
}

.summary-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.portfolio-summary-cards__title {
  font-family: var(--brand-font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #131313;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.portfolio-summary-cards__title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.summary-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--brand-dark-grey);
  text-align: center;
  margin-bottom: 4rem;
  font-family: var(--brand-font-main);
  position: relative;
  z-index: 2;
}

.portfolio-summary-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.portfolio-summary-card {
  background: #fff;
  border: 1px solid rgba(242,142,0,0.4);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.portfolio-summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.portfolio-summary-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(242,142,0,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

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

.portfolio-summary-card:hover::after {
  opacity: 1;
}

.portfolio-summary-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.summary-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(242,142,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.portfolio-summary-card:hover .summary-card-icon {
  background: var(--brand-orange);
  transform: scale(1.1) rotate(15deg);
}

.portfolio-summary-card__value {
  font-size: clamp(2rem, 4vw, 1.05em);
  font-family: var(--brand-font-heading);
  color: var(--brand-orange);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
  transition: all var(--transition-fast);
}

.portfolio-summary-card:hover .portfolio-summary-card__value {
  transform: scale(1.1);
  color: var(--brand-orange);
}

.portfolio-summary-card__label {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: var(--brand-dark-grey);
  font-family: var(--brand-font-main);
  font-weight: 500;
  margin-top: 0.5rem;
  position: relative;
  display: inline-block;
}

.summary-card-glow {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: var(--brand-orange);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.6s ease;
  box-shadow: 0 0 20px rgba(242,142,0,0.6);
}

.portfolio-summary-card:hover .summary-card-glow {
  opacity: 1;
}

/* ===================================
   Image with Text Section - Creative Gallery
==================================== */
.portfolio-image-text {
  background: #fff;
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.portfolio-image-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, #f9f9f914 0%, transparent 50%), radial-gradient(circle at 80% 20%, #f9f9f90d 0%, transparent 50%);
  z-index: 0;
}

.image-text-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.portfolio-image-text__title {
  font-family: var(--brand-font-heading);
  color: #131313;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.portfolio-image-text__title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.image-text-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--brand-dark-grey);
  text-align: center;
  margin-bottom: 4rem;
  font-family: var(--brand-font-main);
  position: relative;
  z-index: 2;
}

.portfolio-image-text__grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.image-text-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
  border-radius: var(--border-radius-lg);
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.08),
    0 5px 15px rgba(242,142,0,0.1);
  transition: all var(--transition-bounce);
  position: relative;
  border: 2px solid rgba(242,142,0,0.15);
  padding: 2.5rem;
  overflow: hidden;
}

.image-text-item:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.image-text-item:nth-child(even) .image-text-item__image {
  order: 2;
}

.image-text-item:nth-child(even) .image-text-item__content {
  order: 1;
}

.image-text-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f28e00 0%, #ff6b35 50%, #ffb347 100%);
  background-size: 200% 100%;
  animation: gradientSlide 3s linear infinite;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

@keyframes gradientSlide {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.image-text-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(242,142,0,0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.image-text-item:hover::before {
  transform: scaleX(1);
}

.image-text-item:hover::after {
  opacity: 1;
}

.image-text-item:hover {
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.12),
    0 10px 25px rgba(242,142,0,0.2),
    0 0 40px rgba(242,142,0,0.1);
  border-color: rgba(242,142,0,0.4);
}

.image-text-item__image {
  position: relative;
  overflow: hidden;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all var(--transition-bounce);
}

.image-text-item__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: all var(--transition-bounce);
}

.image-text-item:hover .image-text-item__image {
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(242,142,0,0.15) 0%, rgba(255,107,53,0.1) 50%, rgba(242,142,0,0.15) 100%);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-text-item:hover .image-overlay {
  opacity: 1;
}

.image-text-item__content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.content-icon {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(242,142,0,0.3);
  transition: all var(--transition-fast);
}

.image-text-item:hover .content-icon {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 15px 40px rgba(242,142,0,0.4);
}

.image-text-item__content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--brand-dark-grey);
  line-height: 1.8;
  font-family: var(--brand-font-main);
  margin: 0;
  position: relative;
  transition: all 0.3s ease;
}

.image-text-item:hover .image-text-item__content p {
  color: #2c2c2c;
/*   transform: translateX(5px); */
}

@keyframes imageTextBgMove {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  33% { transform: translateX(-8px) translateY(-6px) rotate(0.2deg); }
  66% { transform: translateX(6px) translateY(-8px) rotate(-0.2deg); }
}

/* ===================================
   Client Feedback - Creative Card Design
==================================== */
.portfolio-client-feedback {
  background: #fff;
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.portfolio-client-feedback .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.portfolio-client-feedback::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   background: radial-gradient(circle at 25% 75%, rgba(242, 142, 0, 0.15) 0%, transparent 50%), radial-gradient(circle at 75% 25%, rgba(242, 142, 0, 0.1) 0%, transparent 50%);
  animation: feedbackBgMove 35s ease-in-out infinite;
  z-index: 0;
}

.feedback-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.feedback-section-title {
  font-family: var(--brand-font-heading);
  color: var(--brand-orange);
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.feedback-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.feedback-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 4rem 3rem;
  position: relative;
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.1),
    0 10px 30px rgba(242,142,0,0.1);
  border: 1px solid rgba(242,142,0,0.1);
  transition: all var(--transition-bounce);
  z-index: 2;
}

.feedback-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.feedback-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 35px 70px rgba(0,0,0,0.15),
    0 15px 40px rgba(242,142,0,0.2);
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}

.portfolio-client-feedback__quote {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-family: var(--brand-font-heading);
  color: var(--brand-dark-grey);
	margin-bottom: 1rem;
  text-align: center;
  margin: 2rem 0 3rem 0;
  font-style: italic;
  line-height: 1.6;
  position: relative;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.client-avatar {
  width: 60px;
  height: 60px;
  background: rgba(242,142,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 2px solid var(--brand-orange);
}

.client-details {
  text-align: left;
}

.portfolio-client-feedback__name {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--brand-dark-grey);
  font-family: var(--brand-font-main);
  font-weight: 700;
  margin: 0;
	text-align: center;
}

.portfolio-client-feedback__title {
  color: var(--brand-orange);
  font-weight: 500;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  margin-top: 0.3rem;
}

/* ===================================
   Why DIT Interactive - Creative Cards
==================================== */
.portfolio-why-dit {
  background: #fff;
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.portfolio-why-dit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 75%, #f9f9f926 0%, transparent 50%), radial-gradient(circle at 75% 25%, #f9f9f91a 0%, transparent 50%);
  animation: whyDitBgMove 40s ease-in-out infinite;
  z-index: 0;
}

.why-dit-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.portfolio-why-dit__title {
  font-family: var(--brand-font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #131313;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.portfolio-why-dit__title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.portfolio-why-dit__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--brand-dark-grey);
  text-align: center;
  margin-bottom: 4rem;
  font-family: var(--brand-font-main);
  position: relative;
  z-index: 2;
}

.why-dit-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--brand-dark-grey);
  text-align: center;
  margin-bottom: 4rem;
  font-family: var(--brand-font-main);
  position: relative;
  z-index: 2;
}

.portfolio-why-dit__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
/*   padding: 0 2rem; */
  position: relative;
  z-index: 2;
}

.portfolio-why-dit__item {
  background: #fff;
  border: 1px solid rgba(242,142,0,0.4);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-soft);
}

.portfolio-why-dit__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.portfolio-why-dit__item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(242,142,0,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

.portfolio-why-dit__item:hover::before {
  transform: scaleX(1);
}

.portfolio-why-dit__item:hover::after {
  opacity: 1;
}

.portfolio-why-dit__item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.why-dit-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--brand-font-heading);
  box-shadow: 0 5px 15px rgba(242,142,0,0.4);
}

.portfolio-why-dit__item img,
.portfolio-why-dit__item i,
.default-icon {
  margin-bottom: 1.5rem;
  font-size: 2.5em;
  color: var(--brand-orange);
  transition: all var(--transition-fast);
  display: inline-block;
}

.portfolio-why-dit__item:hover img,
.portfolio-why-dit__item:hover i,
.portfolio-why-dit__item:hover .default-icon {
  color: var(--brand-orange);
  transform: scale(1.2) rotate(10deg);
}

.portfolio-why-dit__item h3 {
  font-family: var(--brand-font-heading);
  color: var(--brand-dark-grey);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.portfolio-why-dit__item p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--brand-dark-grey);
  font-family: var(--brand-font-main);
  line-height: 1.6;
}

.why-dit-glow {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: var(--brand-orange);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.6s ease;
  box-shadow: 0 0 20px rgba(242,142,0,0.6);
}

.portfolio-why-dit__item:hover .why-dit-glow {
  opacity: 1;
}

/* ===================================
   Technologies Used - Creative Grid
==================================== */
.portfolio-technologies-used {
  background: #fff;
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.portfolio-technologies-used::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(242,142,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(242,142,0,0.05) 0%, transparent 50%);
  animation: techBgMove 30s ease-in-out infinite;
  z-index: 0;
}

.tech-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.portfolio-technologies-used__title {
  font-family: var(--brand-font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #131313;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.portfolio-technologies-used__title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.tech-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--brand-dark-grey);
  text-align: center;
  margin-bottom: 4rem;
  font-family: var(--brand-font-main);
  position: relative;
  z-index: 2;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.tech-item {
  background: #fff;
  border: 1px solid rgba(242,142,0,0.1);
  border-radius: var(--border-radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.tech-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(242,142,0,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

.tech-item:hover::before {
  transform: scaleX(1);
}

.tech-item:hover::after {
  opacity: 1;
}

.tech-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: rgba(242,142,0,0.3);
}

.tech-icon {
  width: 50px;
  height: 50px;
  background: rgba(242,142,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand-orange);
  transition: all var(--transition-fast);
}

.tech-item:hover .tech-icon {
  background: var(--brand-orange);
  color: #fff;
  transform: scale(1.1) rotate(15deg);
}

.tech-item span {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--brand-dark-grey);
  font-family: var(--brand-font-main);
  font-weight: 600;
}

.tech-glow {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: var(--brand-orange);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.6s ease;
  box-shadow: 0 0 15px rgba(242,142,0,0.5);
}

.tech-item:hover .tech-glow {
  opacity: 1;
}

/* ===================================
   SEO & Performance Impact - Creative Cards
==================================== */
.portfolio-seo-impact {
  background: #fff;
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.portfolio-seo-impact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(242,142,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(242,142,0,0.1) 0%, transparent 50%);
  animation: seoImpactBgMove 30s ease-in-out infinite;
  z-index: 0;
}

.portfolio-seo-impact__title {
  font-family: var(--brand-font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #131313;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.portfolio-seo-impact__title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.seo-impact-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--brand-dark-grey);
  text-align: center;
  margin-bottom: 4rem;
  font-family: var(--brand-font-main);
  position: relative;
  z-index: 2;
}

.portfolio-seo-impact__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
/*   padding: 0 2rem; */
  position: relative;
  z-index: 2;
}

.seo-impact-card {
  background: #fff;
  border: 1px solid rgba(242,142,0,0.4);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-soft);
}

.seo-impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.seo-impact-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(242,142,0,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

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

.seo-impact-card:hover::after {
  opacity: 1;
}

.seo-impact-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.seo-impact-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(242,142,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-fast);
}

.seo-impact-card:hover .seo-impact-icon {
  background: var(--brand-orange);
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 10px 30px rgba(242,142,0,0.4);
}

.seo-impact-card__header {
  margin-bottom: 1.5rem;
}

.seo-impact-card__element {
  font-family: var(--brand-font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--brand-dark-grey);
  margin-bottom: 0.5rem;
  line-height: 1.3;
	max-width: 80%;
}

.seo-impact-card__status {
  display: inline-block;
  background: var(--brand-orange);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4em 1em;
  border-radius: var(--border-radius-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(242,142,0,0.3);
}

.seo-impact-card__benefit {
  color: var(--brand-dark-grey);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  margin-top: 1rem;
  font-family: var(--brand-font-main);
}

.seo-impact-card__glow {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: var(--brand-orange);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.6s ease;
  box-shadow: 0 0 20px rgba(242,142,0,0.6);
}

.seo-impact-card:hover .seo-impact-card__glow {
  opacity: 1;
}

/* ===================================
   Mobile Experience - Creative Card
==================================== */
.portfolio-mobile-experience {
  background: linear-gradient(135deg, #2a2a2a 0%, #3d3d3d 100%);
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.portfolio-mobile-experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 40% 60%, rgba(242,142,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(242,142,0,0.1) 0%, transparent 50%);
  animation: mobileBgMove 25s ease-in-out infinite;
  z-index: 0;
}

.mobile-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.portfolio-mobile-experience__title {
  font-family: var(--brand-font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 30px rgba(242,142,0,0.5);
}

.mobile-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-bottom: 4rem;
  font-family: var(--brand-font-main);
  position: relative;
  z-index: 2;
}

.mobile-experience-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(242,142,0,0.2);
  border-radius: var(--border-radius-lg);
  padding: 4rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.mobile-experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.mobile-experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 35px 70px rgba(0,0,0,0.4),
    0 0 40px rgba(242,142,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.mobile-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 15px 40px rgba(242,142,0,0.4);
  animation: mobileIconFloat 3s ease-in-out infinite;
}

.portfolio-mobile-experience__text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  text-align: center;
  line-height: 1.8;
  margin: 2rem 0 3rem 0;
  font-family: var(--brand-font-main);
}

.mobile-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.mobile-feature {
  background: rgba(242,142,0,0.1);
  border: 1px solid rgba(242,142,0,0.3);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-family: var(--brand-font-main);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.mobile-feature:hover {
  background: rgba(242,142,0,0.2);
  border-color: rgba(242,142,0,0.5);
  transform: translateY(-5px);
  color: #fff;
}

/* ===================================
   Animation Classes
==================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  transition-delay: calc(var(--stagger-delay, 0) * 0.15s);
}

/* Particle variations */
.particle-dot {
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
}

.particle-line {
  width: 2px !important;
  height: 20px !important;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6), transparent);
  border-radius: 1px;
}

.particle-triangle {
  width: 0 !important;
  height: 0 !important;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 10px solid rgba(255,255,255,0.4);
  background: transparent !important;
}

/* Mouse trail */
.trail-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--brand-orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
  transition: scale 0.2s ease;
  box-shadow: 0 0 10px rgba(242, 142, 0, 0.2);
}

/* Counter animation */
.counter {
  font-weight: bold;
  color: var(--brand-orange);
  transition: color 0.3s ease;
}

/* Tilt effect */
[data-tilt] {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}

/* Loading animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loading {
  animation: pulse 2s infinite;
}

/* Loading skeleton */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

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

/* Enhanced scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
  z-index: 9999;
  transition: width 0.2s ease;
  box-shadow: 0 0 15px rgba(242, 142, 0, 0.6);
}

/* Enhanced visual effects */
.portfolio-page {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Improved section spacing */
section {
  scroll-margin-top: 80px;
}

/* Performance optimizations */
* {
  will-change: auto;
}

.animate-on-scroll {
  will-change: transform, opacity;
}

/* Enhanced card interactions */
.portfolio-summary-card,
.seo-impact-card,
.portfolio-why-dit__item,
.tech-item,
.feedback-card {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* Improved loading states */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

/* Enhanced accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scroll-progress {
    transition: none;
  }
}

/* Enhanced button hover effects */
.hero-banner__btn, .pulse-btn, .live-project-btn {
  position: relative;
  overflow: hidden;
}

.hero-banner__btn::after, .pulse-btn::after, .live-project-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-banner__btn:hover::after, .pulse-btn:hover::after, .live-project-btn:hover::after {
  width: 300px;
  height: 300px;
}

/* ===================================
   Accessibility & Reduced Motion
==================================== */
@media (prefers-reduced-motion: reduce) {
  .particle,
  .shape,
  .trail-dot,
  .hero-glitch,
  .typewriter {
    animation: none !important;
  }
  
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
  
  [data-tilt] {
    transform: none !important;
  }
}

.reduced-motion .particle,
.reduced-motion .shape,
.reduced-motion .trail-dot {
  display: none !important;
}

[tabindex]:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

/* ===================================
   About Brand Animations
==================================== */
@keyframes aboutBgMove {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-20px) translateY(-10px); }
}

@keyframes aboutFloatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-30px, -20px) rotate(120deg); }
  66% { transform: translate(20px, -30px) rotate(240deg); }
}

@keyframes aboutImageGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.02); }
}

@keyframes aboutTextFadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===================================
   Responsive Styles
==================================== */
@media (max-width: 1200px) {
  .about-brand__container {
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    max-width: 1200px;
  }
}
@media (max-width: 767px) {
  .portfolio-client-feedback {
    padding: 4rem 0 6rem 0;
  }
}
@media (max-width: 991px) {
  .about-brand__container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
    padding: 0 1.5rem;
  }
  
  .about-brand__text h2::before {
    display: none;
  }
  
  .about-brand__text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-brand__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .about-brand {
    padding: 2rem 0 2rem 0;
  }
  
  .portfolio-challenges,
  .portfolio-solutions {
    padding: 3rem 0 0rem 0;
  }
  
  .portfolio-challenges__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 0 1.5rem;
  }
  
	.portfolio-solutions__container {
		display: flex;
        gap: 3rem;
        text-align: center;
        padding: 0 1.5rem;
        flex-direction: column-reverse;
	}
  .portfolio-challenges__content::before {
    display: none;
  }
  
  .portfolio-solutions__content::before {
    display: none;
  }
  
  .portfolio-challenges__content h2::after,
  .portfolio-solutions__content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .portfolio-why-dit__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .portfolio-seo-impact__table,
  .portfolio-summary-table__table {
    min-width: 500px;
  }
}

@media (max-width: 767px) {
  .hero-banner {
    min-height: 85vh;
  }
  
  .hero-banner__content {
    padding: 3rem 1.5rem;
    margin: 1rem;
  }
  
  .hero-meta-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0 1.5rem 0;
  }
  
  .hero-meta-item {
    padding: 1.2rem 1.5rem;
  }
  
  .section-title,
  .portfolio-key-features__title,
  .portfolio-ui-highlights__title,
  .portfolio-summary-cards__title,
  .portfolio-why-dit__title,
  .portfolio-technologies-used__title,
  .portfolio-seo-impact__title,
  .portfolio-mobile-experience__title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 2rem;
  }
  
  .section-subtitle,
  .key-features-subtitle,
  .seo-impact-subtitle,
  .summary-subtitle,
  .why-dit-subtitle,
  .tech-subtitle,
  .mobile-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    margin-bottom: 3rem;
  }
  
  .about-brand {
    padding: 2rem 0 2rem 0;
  }
  
  .about-brand__container {
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .about-brand__text h2 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 1.5rem;
  }
  
  .about-brand__text p {
    font-size: clamp(1rem, 3vw, 1.2rem);
/*     padding-left: 1rem; */
  }
  
  .about-brand__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .about-brand__stat {
    padding: 1rem 0.5rem;
  }
  
  .about-brand__stat-number {
    font-size: 1.5rem;
  }
  
  .about-brand__stat-label {
    font-size: 0.8rem;
  }
  
  .about-brand__image::before,
  .about-brand__image::after {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }
  
  .portfolio-objectives {
    padding: 5rem 0 4rem 0;
  }
  
  .objectives-list {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .objectives-list li {
    padding: 2rem 1.5rem;
  }
  
  .objective-icon {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .objective-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
  
  .portfolio-challenges,
  .portfolio-solutions {
    padding: 3rem 0 0rem 0;
  }
  
  .portfolio-challenges__container,
  .portfolio-solutions__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .portfolio-challenges__content::before {
    display: none;
  }
  
  .portfolio-solutions__content::before {
    display: none;
  }
  
  .portfolio-challenges__content h2::after,
  .portfolio-solutions__content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .portfolio-why-dit__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	  margin-top: 3rem;
  }
  
  .portfolio-seo-impact__table,
  .portfolio-summary-table__table {
    min-width: 500px;
  }
}

@media (max-width: 991px) {
  .portfolio-image-text__grid {
    padding: 0 1rem;
  }
  
  .image-text-item {
		grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
        box-shadow: none;
        border-radius: unset;
  }

 .image-text-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
 }
  
  .image-text-item:nth-child(even) .image-text-item__image,
  .image-text-item:nth-child(even) .image-text-item__content {
    order: unset;
  }
  
  
  .image-text-item__content {
    padding: 0.5rem;
  }
}

@media (max-width: 767px) {
  .portfolio-image-text {
    padding: 6rem 0 4rem 0;
  }
  
  .portfolio-image-text__grid {
    padding: 0 0.5rem;
    gap: 3rem;
  }
  
  .image-text-item {
    padding: 1.2rem;
    gap: 1.5rem;
  }
  
  
  .image-text-item__content {
    padding: 0.3rem;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    min-height: 75vh;
  }
  
  .hero-banner__content h1 {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
  }
  
  .hero-banner__content p {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
  }
  
  .hero-banner__btn, .pulse-btn, .live-project-btn {
    padding: 1em 2.5em;
    font-size: clamp(1rem, 3vw, 1.1rem);
  }
  
  .portfolio-image-text {
    padding: 4rem 0 3rem 0;
  }
  
  .portfolio-image-text__grid {
    gap: 2rem;
  }
  
  .image-text-item {
    padding: 1rem;
    gap: 1rem;
  }

  
  .image-text-item__content {
    padding: 0.2rem;
  }
  
  .image-text-item__content p {
    font-size: clamp(0.9rem, 3vw, 1rem);
    line-height: 1.5;
  }
  
  .about-brand {
    padding: 1rem 0 2rem 0;
  }
  
  .about-brand__container {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .about-brand__text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .about-brand__text h2::after {
    width: 60px;
    height: 4px;
  }
  
  .about-brand__text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
/*     padding-left: 0.5rem; */
  }
  
  .about-brand__text p::before {
    font-size: 2rem;
    top: -5px;
  }
  
  .about-brand__stats {
    margin-top: 1.5rem;
  }
  
  .about-brand__stat {
    padding: 0.8rem 0.3rem;
  }
  
  .about-brand__stat-number {
    font-size: 1.5rem;
  }
  
  .about-brand__stat-label {
    font-size: 0.8rem;
  }
  
  .about-brand__image::before,
  .about-brand__image::after {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }
  
  .portfolio-objectives {
    padding: 2rem 0 3rem 0;
  }
  
  .portfolio-objectives::after {
    width: 400px;
    height: 400px;
    top: -20%;
    left: -30%;
  }
  
  .objectives-list {
    padding: 0 0.5rem;
    gap: 1.5rem;
  }
  
  .objectives-list li {
    padding: 1.8rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .objective-icon {
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .objective-number {
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    top: 8px;
    right: 8px;
  }
  
  .portfolio-challenges,
  .portfolio-solutions {
    padding: 0rem 0 2rem 0;
  }
  
  .portfolio-challenges__container,
  .portfolio-solutions__container {
    padding: 0 1rem;
    gap: 3rem;
  }
  
  .portfolio-challenges__content,
  .portfolio-solutions__content {
    padding: 2.5rem 2rem;
  }
  
  .portfolio-challenges__content ul li,
  .portfolio-solutions__content ul li {
    padding: 1rem 1rem 1rem 1rem;
    font-size: 0.95rem;
    color: #000;
  }
  
  .portfolio-challenges__image::before,
  .portfolio-solutions__image::before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }
  
  .portfolio-challenges::after {
    width: 300px;
    height: 300px;
    top: -25%;
    right: -40%;
  }
  
  .portfolio-solutions::after {
    width: 300px;
    height: 300px;
    top: -25%;
    left: -35%;
  }
  
  .portfolio-key-features {
    padding: 4rem 0 3rem 0;
  }
  
  .portfolio-key-features::after {
    width: 400px;
    height: 400px;
    top: -25%;
    left: -40%;
  }
  
  .portfolio-key-features__grid {
    padding: 0 0.5rem;
    gap: 1.5rem;
  }
  
  .portfolio-key-features__grid li {
    padding: 1.8rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .key-feature-icon {
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .key-features-subtitle {
    font-size: 0.9rem;
    margin-bottom: 3rem;
  }
  
  .portfolio-ui-highlights {
    padding: 4rem 0 3rem 0;
  }
  
  .portfolio-ui-highlights::after {
    width: 400px;
    height: 400px;
    top: -20%;
    right: -35%;
  }
  
  .portfolio-ui-highlights__grid {
    padding: 0 0.5rem;
    gap: 1.5rem;
  }
  
  .portfolio-ui-highlights__item {
    padding: 2rem 1.5rem;
  }
  
  .ui-highlight-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .section-title,
  .portfolio-key-features__title,
  .portfolio-ui-highlights__title,
  .portfolio-summary-cards__title,
  .portfolio-why-dit__title,
  .portfolio-technologies-used__title,
  .portfolio-seo-impact__title,
  .portfolio-mobile-experience__title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 3rem;
  }
  
  .about-brand__text h2,
  .portfolio-challenges__content h2,
  .portfolio-solutions__content h2 {
    font-size: 1.5rem;
  }
  
  
  .about-brand::after {
    width: 300px;
    height: 300px;
    top: -30%;
    right: -30%;
  }
  
  .portfolio-key-features__grid li,
  .portfolio-ui-highlights__item,
  .portfolio-why-dit__item,
  .portfolio-summary-card {
    padding: 1.5em 1em;
  }
  
  .portfolio-client-feedback__quote {
    font-size: 1.1rem;
    padding: 1.5rem 1rem;
	          text-align: justify;
	  margin: 0;
  }
  
  .portfolio-mobile-experience__text {
    padding: 1.5rem 1rem;
  }
  
  .particle {
    width: 2px;
    height: 2px;
  }
  
  .shape {
    display: none;
  }
  
  .trail-dot {
    width: 4px;
    height: 4px;
  }
  
  .portfolio-image-text {
    padding: 3rem 0 2rem 0;
  }
  
  .portfolio-image-text__grid {
    gap: 1.5rem;
  }
}

/* Technology & Industry Section */
.portfolio-tech-industry {
    background: #f8f9fa;
    padding: 60px 0 40px 0;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.portfolio-tech-industry__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #222;
}
.portfolio-tech-industry__content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.portfolio-tech-industry__item {
    background: #fff;
    padding: 18px 32px;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    font-size: 1.1rem;
    min-width: 220px;
    text-align: center;
}
.portfolio-tech-industry__label {
    font-weight: 600;
    color: #0073aa;
    margin-right: 8px;
}
.portfolio-tech-industry__value {
    color: #333;
    font-weight: 400;
}

/* Live Website Button Section */
.portfolio-live-website {
  width: 100%;
  padding: 80px 0 80px 0;
  background: radial-gradient(circle at 25% 75%, rgba(242, 142, 0, 0.15) 0%, transparent 50%), radial-gradient(circle at 75% 25%, rgba(242, 142, 0, 0.1) 0%, transparent 50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio-live-website .container {
  display: flex;
  justify-content: center;
}

.live-website-btn {
  display: inline-block;
  position: relative;
  background: linear-gradient(90deg, #f28e00 0%, #ffb347 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 40px;
  box-shadow: 0 4px 24px rgba(242,142,0,0.13), 0 0 24px 0 #ffb34799;
  text-decoration: none;
  letter-spacing: 1px;
  overflow: hidden;
  border: 3px solid transparent;
  background-clip: padding-box;
  z-index: 1;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: btnFloat 3s ease-in-out infinite;
}
.live-website-btn::before {
  content: '';
  position: absolute;
  /* inset: -4px; */
  border-radius: 44px;
  background: linear-gradient(270deg, #f28e00, #ffb347, #f28e00, #ffb347);
  background-size: 400% 400%;
  z-index: 0;
  /* filter: blur(8px); */
  opacity: 0.7;
  animation: btnBorderAnim 4s linear infinite;
}
.live-website-btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: linear-gradient(90deg, #fff, #ffe0b2, #fff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: btnTextShimmer 2.5s linear infinite;
}
.live-website-btn:hover {
  transform: translateY(-4px) scale(1.07) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(242,142,0,0.18), 0 0 48px 8px #ffb34744;
}
.live-website-btn:active {
  transform: scale(0.98);
}
@keyframes btnBorderAnim {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes btnFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes btnTextShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@media (max-width: 767px) {
  .live-website-btn {
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: 32px;
  }
}
@media (max-width: 480px) {
  .live-website-btn {
    font-size: 0.95rem;
    padding: 9px 10px;
    border-radius: 24px;
  }
	
}

.live-website-btn, .live-website-btn span {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* Simple Hero Banner Styles */
.hero-banner__overlay {
  background: rgba(20,20,20,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.hero-banner__content {
  box-shadow: none !important;
  background: transparent !important;
  border: none !important;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.hero-heading-simple {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}
.hero-subheading-simple {
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  color: #ffe0b2;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-meta-wrapper-simple {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #fff7e6;
  display: flex;
  gap:  1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.meta-label {
  font-weight: 600;
  color: #ffb347;
  margin-right: 4px;
}
.meta-value {
  font-weight: 400;
  color: #fff;
}
@media (max-width: 767px) {
  .hero-banner__content {
    padding: 1.2rem 0.5rem;
  }
  .hero-heading-simple {
    font-size: 1.5rem;
  }
  .hero-subheading-simple {
    font-size: 1rem;
  }
  .hero-meta-wrapper-simple {
    font-size: 0.98rem;
    gap: 0.7rem;
  }
	
}

.hero-banner.hero-banner-simple {
  background: none !important;
  padding: 0;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-banner-img-simple {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 0 0 18px 18px;
  margin-bottom: -36px;
  box-shadow: 0 8px 32px rgba(49,49,49,0.07);
}
.hero-banner__content-simple {
  background: #fff;
  box-shadow: 0 4px 24px rgba(49,49,49,0.08);
  border-radius: 18px;
  padding: 2.5rem 1.5rem 1.2rem 1.5rem;
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
  position: relative;
  top: -36px;
  z-index: 2;
}
.hero-heading-simple {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 800;
  color: #222;
  margin-bottom: 1.1rem;
  letter-spacing: -1px;
}
.hero-subheading-simple {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #888;
  margin-bottom: 1.3rem;
  font-weight: 400;
}
.hero-meta-wrapper-simple {
  margin-top: 0.5rem;
  font-size: 1.08rem;
  color: #ffb347;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.meta-label {
  font-weight: 600;
  color: #f28e00;
  margin-right: 4px;
}
.meta-value {
  font-weight: 400;
  color: #222;
}
@media (max-width: 991px) {
  .portfolio-hero-classic {
    min-height: 380px;
  }
  
  .portfolio-hero-img-classic {
    min-height: 200px;
  }
  
  .portfolio-hero-card-classic {
    padding: 2.2rem 1.8rem;
    max-width: 95vw;
  }
}

@media (max-width: 767px) {
  .portfolio-hero-classic {
    min-height: 320px;
    margin-bottom: 24px;
  }
  
  .portfolio-hero-img-classic {
    min-height: 180px;
  }
  
  .portfolio-hero-card-classic {
    padding: 1.8rem 1.2rem;
  }
  
  .hero-banner-img-simple {
    max-height: 140px;
    border-radius: 0 0 10px 10px;
    margin-bottom: -18px;
  }
  
  .hero-banner__content-simple {
    padding: 1.1rem 0.3rem 0.7rem 0.3rem;
    border-radius: 10px;
    top: -18px;
    max-width: 98vw;
  }
  
  .hero-heading-simple {
    font-size: 1.3rem;
  }
  
  .hero-subheading-simple {
    font-size: 0.98rem;
  }
  
  .hero-meta-wrapper-simple {
    font-size: 0.95rem;
    gap: 0.5rem;
  }
}

/* --- Hero Banner Styles --- */
.smart-hero-banner {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  background: #181c24;
}
.smart-hero-banner__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(.4,2,.6,1);
}
.smart-hero-banner__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(24,28,36,0.8) 60%, rgba(24,28,36,0.5) 100%);
  z-index: 2;
}
.smart-hero-banner__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 40px 24px;
  text-align: center;
}
.smart-hero-banner__heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -1px;
  line-height: 1.1;
}
.smart-hero-banner__subheading {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 22px;
  color: #e0e0e0;
}
.smart-hero-banner__meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 1.05rem;
  margin-top: 18px;
}
.smart-hero-banner__meta .meta-label {
  font-weight: 600;
  color: #ffd700;
  margin-right: 4px;
}
.smart-hero-banner__meta .meta-value {
  color: #fff;
}
@media (max-width: 600px) {
  .smart-hero-banner {
    min-height: 50vh;
  }
  
  .smart-hero-banner__heading {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 12px;
  }
  
  .smart-hero-banner__subheading {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: 16px;
  }
  
  .smart-hero-banner__container {
    padding: 30px 15px 25px 15px;
  }
  
  .smart-hero-banner__meta {
    flex-direction: column;
    gap: 12px;
    font-size: 0.95rem;
  }
}

/* --- Creative Hero Banner Styles --- */
.creative-hero-banner__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 16px 32px 16px;
  max-width: 700px;
  margin: 0 auto;
}
.creative-hero-banner__img-wrap {
  width: 180px;
  height: 180px;
  margin-bottom: 28px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.18);
  background: #23272f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.creative-hero-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.creative-hero-banner__content {
  text-align: center;
  width: 100%;
}
.creative-hero-banner__heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: -1px;
}
.creative-hero-banner__accent {
  width: 60px;
  height: 5px;
  background: #f28e00;
  border-radius: 3px;
  margin: 0 auto 18px auto;
}
.creative-hero-banner__subheading {
  font-size: 1.15rem;
  color: #e67e00;
  margin-bottom: 18px;
}
.creative-hero-banner__meta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}
.creative-hero-banner__tag {
  background: #f28e00;
  color: #fff;
  font-size: 0.98rem;
  padding: 6px 18px;
  border-radius: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px 0 rgba(242,142,0,0.08);
}
@media (max-width: 600px) {
  .creative-hero-banner__img-wrap {
    width: 120px;
    height: 120px;
    margin-bottom: 18px;
  }
  .creative-hero-banner__heading {
    font-size: 1.5rem;
  }
  .creative-hero-banner__accent {
    width: 36px;
    height: 4px;
    margin-bottom: 12px;
  }
  .creative-hero-banner__subheading {
    font-size: 1rem;
  }
}

.portfolio-hero-card-classic {
  background: rgb(255 255 255 / 95%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
/*   clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px); */
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 0 60px rgba(242,142,0,0.1);
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  max-width: 40%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(242,142,0,0.3);
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite, pulseGlow 4s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  50% { transform: translateY(-8px) rotateX(2deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 25px 50px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.1), 0 0 60px rgba(242,142,0,0.1); }
  50% { box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.15), inset 0 1px 0 rgba(255,255,255,0.15), 0 0 80px rgba(242,142,0,0.2); }
}

.portfolio-hero-card-classic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #f28e00 0%, #ff6b35 50%, #ffb347 100%);
  background-size: 200% 100%;
  animation: gradientFlow 3s linear infinite;
/*   clip-path: polygon(20px 0%, 100% 0%, 100% 8px, 0% 8px, 0% 20px); */
  z-index: 3;
}

@keyframes gradientFlow {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.portfolio-hero-card-classic::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(242,142,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: particleFloat 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes particleFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 0.3; }
  33% { transform: translate(-60%, -40%) scale(1.2) rotate(120deg); opacity: 0.5; }
  66% { transform: translate(-40%, -60%) scale(0.8) rotate(240deg); opacity: 0.4; }
}

.portfolio-hero-card-classic:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(242,142,0,0.5);
  box-shadow: 
    0 35px 70px rgba(0,0,0,0.3),
    0 0 0 2px rgba(255,255,255,0.2),
    inset 0 2px 0 rgba(255,255,255,0.2),
    0 0 100px rgba(242,142,0,0.3);
}
.portfolio-hero-heading-classic {
  font-size: clamp(2.2rem, 4vw, 5.2rem);
  font-weight: 900;
      color: #313131;
  margin-bottom: 1.1rem;
	text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.portfolio-hero-subheading-classic {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #ffb347;
  margin-bottom: 1.3rem;
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}
.portfolio-hero-meta-classic {
  margin-top: 1.5rem;
	font-weight: 500;
    font-size: larger;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
	margin: 4.5rem auto auto auto;
    font-weight: 700;
	width: 25%;
}

@media (max-width: 900px) {
  .portfolio-hero-img-classic, .portfolio-hero-card-classic {
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  .portfolio-hero-classic {
    min-height: 280px;
    margin-bottom: 20px;
  }
  
  .portfolio-hero-img-classic {
    border-radius: 8px 8px 0 0;
    margin-bottom: -20px;
    min-height: 160px;
  }
  
  .portfolio-hero-card-classic {

    padding: 1.8rem 1.2rem;
    margin-bottom: 20px;
    max-width: 96vw;
  }
  
  .portfolio-hero-card-classic::before {
    height: 5px;
  }
  
  .portfolio-hero-heading-classic {
    font-size: clamp(2.1rem, 4vw, 1.3rem);
    margin-bottom: 0.8rem;
  }
  
  .portfolio-hero-subheading-classic {
    font-size: clamp(0.85rem, 2.5vw, 0.98rem);
    margin-bottom: 1rem;
  }
  
  .portfolio-hero-meta-classic {
    gap: 0.4rem;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
  }
  
  .portfolio-hero-meta-label, .portfolio-hero-meta-value {
    font-size: 0.8rem;
    padding: 4px 10px;
    margin-right: 0;
  }
  
  .portfolio-hero-classic::before {
    height: 100px;
    width: 200vw;
    top: -25px;
    left: -50px;
  }
  
  .creative-hero-banner__container {
    padding: 30px 12px 20px 12px;
  }
  
  .creative-hero-banner__img-wrap {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 15px;
  }
  
  .creative-hero-banner__heading {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    margin-bottom: 8px;
  }
  
  .creative-hero-banner__accent {
    width: 30px;
    height: 3px;
    margin-bottom: 10px;
  }
  
  .creative-hero-banner__subheading {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: 12px;
  }
  
  .creative-hero-banner__meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .creative-hero-banner__tag {
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 12px;
  }
	.portfolio-hero-meta-classic {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
	.about-brand__text p {
    
    text-align: left;
}
}

.portfolio-hero-classic {
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: linear-gradient(120deg, #fff7e6 60%, #ffe0b2 100%);
}
.portfolio-hero-classic::before {
  content: '';
  position: absolute;
  top: -80px; left: -60px;
  width: 120vw;
  height: 420px;
  background: radial-gradient(circle at 30% 60%, #f28e0033 0%, transparent 70%),
              radial-gradient(circle at 80% 20%, #ffb34722 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.portfolio-hero-img-classic {
  width: 100%;
  height: auto;
  box-shadow: 0 8px 32px rgba(49,49,49,0.10);
  object-fit: cover;
  margin-bottom: -32px;
  background: #f8f8f8;
  position: relative;
  z-index: 1;
}
.portfolio-hero-card-classic {
  margin-bottom: 48px;
  animation: fadeInUpHeroCard 1.2s cubic-bezier(.4,2,.6,1) both;
}

.portfolio-live-website-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
@keyframes fadeInUpHeroCard {
  0% { opacity: 0; transform: translateY(40px) scale(0.98); }
  80% { opacity: 1; transform: translateY(-6px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .portfolio-hero-img-classic {
    min-height: 220px;	
	          border-radius: 0px;
	  max-width: 100%;
  }
	.portfolio-hero-meta-classic {
	width: 100%;
	margin: 0 0 1rem 0 !important
	}
	
	
  .portfolio-hero-meta-classic 
	margin: 2.5rem 1.5rem auto 1.5rem;
}
  
  .portfolio-hero-classic::before {
    height: 280px;
    width: 130vw;
    top: -50px;
    left: -70px;
  }
}
@media (max-width: 480px) {
  .portfolio-hero-classic {
    min-height: 260px;
  }
  
  .portfolio-hero-img-classic {
    border-radius: 8px 8px 0 0;
    margin-bottom: -18px;
    min-height: 140px;
  }
  
  .portfolio-hero-card-classic {
    border-radius: 10px;
    padding: 1.2rem 0.8rem;
    margin-bottom: 24px;
    max-width: 98vw;
  }
  
  .portfolio-hero-classic::before {
    height: 140px;
    width: 180vw;
    top: -30px;
    left: -60px;
  }
}

@media (max-width: 991px) {
	.portfolio-hero-img-classic {
    margin: 0px 0 -25px 0;
		border-radius: 0;
	}
	.portfolio-hero-meta-classic {
	margin: 2.5rem 1.5rem auto 1.5rem;
	}
	
	    .portfolio-hero-meta-classic {
        font-size: large;
			color: #000;
    }
	.portfolio-challenges__content,
	.portfolio-solutions__content{
		padding: 0;
    border: unset;
		width: 100%;
		
	}
	
	    .portfolio-hero-card-classic {
        margin-bottom: 20px;
        max-width: 100%;
        box-shadow: none;
    }
	.portfolio-hero-classic {
		background: #fff;
	}
	.portfolio-key-features,
	.portfolio-image-text,
	.portfolio-ui-highlights,
	.portfolio-seo-impact,
	.portfolio-summary-cards,
	.portfolio-client-feedback,
	.portfolio-why-dit{
		    padding: 2rem 0 2rem 0;
	}
	
	.portfolio-solutions__image:hover img {
    transform: none;
    box-shadow: none;
    border-radius: unset;
}
	.portfolio-challenges__image:hover img {
    transform: none;
    box-shadow: none;
}
	.portfolio-why-dit__subtitle {
		margin-bottom: 1rem;
	}
	
	.image-text-subtitle {
		margin-bottom: 2rem;
	}
	.hero-content-main:hover{
		background: #fff;
	}
	
	.portfolio-image-text__grid {
	  max-width: 100%;
		}

	 
}