* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: white;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.light-bg {
    background: #121226;
}

hr {
  height: 1px; /* Set the thickness of the line */
  background-color: #36364c; /* Set the desired color */
  border: none; /* Remove the default border for a solid color */
}


/* Header */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(5px);
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.full-width-image {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.image-container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
}

.btn {
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-secondary {
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Hero Section */
.hero {
    padding: 20px 0 100px;
    text-align: center;
    position: relative;
    overflow:hidden;
    background: #000;
    min-height:600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(59, 130, 246, 0.4) 0%, rgba(37, 99, 235, 0.25) 30%, rgba(29, 78, 216, 0.15) 50%, transparent 70%);
    animation: gradientPulse 3s ease-in-out infinite, colorShift 5s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 60% 80% at 30% 60%, rgba(37, 99, 235, 0.3) 0%, rgba(29, 78, 216, 0.2) 40%, transparent 70%);
    animation: gradientShift 4s ease-in-out infinite, colorShift 5s ease-in-out infinite;
    animation-delay: -1.5s, -2.5s;
    z-index: 0;
}


.grid-container {
	--grid: 10rem;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transform-style: preserve-3d;
	perspective: 100rem;
	animation: rotate 100s linear infinite forwards;

	.plane {
		--dir: 1;
		width: 300%;
		height: 150%;
		min-height: 70rem;
		position: absolute;
		bottom: 0;
		transform-style: preserve-3d;
		transform-origin: bottom center;
		transform: translateX(-50%) rotateX(85deg);

		/* &:last-child {
			--dir: -1;
			top: 0;
			transform-origin: top center;
			transform: translateX(-50%) rotateX(-85deg);

			& > * {
				&::after {
					background-image: linear-gradient(to top, rgba(0, 0, 0, 255) var(--grid), rgba(0, 0, 0, 0));
				}
			}
		} */

		& > * {
			transform-style: preserve-3d;
			height: 100%;
			width: 100%;
			position: absolute;

			&::before, &::after {
				content: '';
				display: block;
				position: absolute;
				width: 100%;
				height: 100%;
				top: 0;
				left: 0;
			}

			&::before {
				background-image: repeating-linear-gradient(to left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 4px, transparent 4px, transparent var(--grid)),
					repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 4px, transparent 4px, transparent var(--grid));
				animation: move 1s linear infinite forwards;
			}

			&::after {
				background-image: linear-gradient(to bottom, rgba(0, 0, 0, 255) var(--grid), rgba(0, 0, 0, 0));
				z-index: 1;
				transform: translateZ(1px);
			}
		}

		.glow {
			filter: blur(1rem);
			z-index: 1;
			mix-blend-mode: plus-lighter;
		}
	}
}

@keyframes move {
	from {
		transform: translateY(0px);
	}

	to {
		transform: translateY(calc(var(--grid) * var(--dir)));
	}
}

@keyframes blink {
	0% {
		visibility: visible;
	}

	50% {
		visibility: visible;
	}

	51% {
		visibility: hidden;
	}

	100% {
		visibility: hidden;
	}
}

/* Moving Grid Background */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 25s linear infinite;
    z-index: 1;
    pointer-events: none;
}

/* .grid-overlay-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 120px 120px;
    animation: gridMove 40s linear infinite reverse;
    z-index: 1;
    pointer-events: none;
} */

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

@keyframes colorShift {
    0% {
        filter: hue-rotate(0deg) saturate(1);
    }
    25% {
        filter: hue-rotate(90deg) saturate(1.2);
    }
    50% {
        filter: hue-rotate(180deg) saturate(1.4);
    }
    75% {
        filter: hue-rotate(270deg) saturate(1.1);
    }
    100% {
        filter: hue-rotate(360deg) saturate(1);
    }
}

@keyframes gradientPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(0.9) rotate(-3deg);
        opacity: 1.2;
    }
    75% {
        transform: scale(1.05) rotate(2deg);
        opacity: 0.9;
    }
}

@keyframes gradientShift {
    0%, 100% {
        transform: translateX(0%) translateY(0%) scale(1) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateX(10%) translateY(-5%) scale(1.15) rotate(10deg);
        opacity: 1;
    }
    50% {
        transform: translateX(-5%) translateY(10%) scale(0.85) rotate(-8deg);
        opacity: 0.9;
    }
    75% {
        transform: translateX(8%) translateY(-3%) scale(1.1) rotate(15deg);
        opacity: 1.1;
    }
}

/* Mist Animation - Enhanced for dramatic effect */
.mist {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.mist::before,
.mist::after {
    content: '';
    position: absolute;
    background: radial-gradient(ellipse 60% 40% at center, rgba(139, 92, 246, 0.6) 0%, rgba(168, 85, 247, 0.4) 30%, transparent 70%);
    border-radius: 50%;
    animation: mistFlow 25s infinite ease-in-out;
    filter: blur(40px);
}

.mist::before {
    width: 800px;
    height: 400px;
    top: 20%;
    left: -200px;
    animation-delay: 0s;
}

.mist::after {
    width: 1000px;
    height: 500px;
    top: 30%;
    right: -300px;
    animation-delay: -12s;
}

.mist-particle {
    position: absolute;
    background: radial-gradient(ellipse 70% 30% at center, rgba(59, 130, 246, 0.5) 0%, rgba(37, 99, 235, 0.25) 40%, transparent 70%);
    border-radius: 50%;
    animation: mistDrift 30s infinite linear, colorShift 15s ease-in-out infinite;
    pointer-events: none;
    filter: blur(25px);
}

@keyframes mistFlow {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-40px) translateX(30px) scale(1.2) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) translateX(-40px) scale(0.8) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-60px) translateX(20px) scale(1.1) rotate(270deg);
        opacity: 0.9;
    }
}

@keyframes mistDrift {
    0% {
        transform: translateX(-200px) translateY(0px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(200px) translateY(-40px) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.03) -25%, rgba(255, 255, 255, 0) -21%, rgb(255, 255, 255) 56.3063%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    color: rgba(255, 255, 255, .8);
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 200;
}

.hero-description {
    display: none;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 0;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
}

.hero-actions .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 28px;
    font-weight: 500;
    border-radius: 8px;
}

.work-hero{padding: 60px 40px}
.title-section{margin-bottom: 60px;}
.title-section h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.03) -25%, rgba(255, 255, 255, 0) -21%, rgb(255, 255, 255) 56.3063%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.description{font-size: 18px;
    color: #a0a0a0;
    max-width: 800px;
    line-height: 1.7;}

 .hero-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    background: #2a2435;
    position: relative;
}
 .hero-image .phone-mockup {
    background: linear-gradient(135deg, #6b5b95 0%, #4a3d66 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.text-wrapper {
    position: relative;
    z-index: 10;
}

.shapes-container h1 {
    font-size: 8rem;
    color:transparent;
    margin: 0;
    text-align: center;
    background: linear-gradient(transparent, transparent);
    -webkit-background-clip: text;
    background-clip: text;
}

@media (min-width: 419px) {
    .shapes-container h1 {
        font-size: calc((0.0989119683 * 100vw + (58.5558852621px)));
    }
}

@media (min-width: 1430px) {
  .shapes-container  h1 {
        font-size: 8rem;
    }
}

.shapes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shapes {
    position: absolute;
    width: 100%;
    height: 60%;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-family="Montserrat, sans-serif" font-weight="900" font-size="6rem">Design with<br/> Purpose</text></svg>');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-family="Montserrat, sans-serif" font-weight="900" font-size="6rem">Design with <br/> Purpose</text></svg>');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background: #fff;
}

.shape {
    will-change: transform;
    position: absolute;
    border-radius: 50%;
}

.shape.shape-1 {
    background: #8b5cf6;
    width: 650px;
    height: 650px;
    margin: -340px 0 0 -325px;
}

.shape.shape-2 {
    background: #00f2fe;
    width: 440px;
    height: 440px;
    margin: -220px 0 0 -220px;
}

.shape.shape-3 {
    background: #ff6b9d;
    width: 270px;
    height: 270px;
    margin: -135px 0 0 -135px;
}

.shape-subtext{position: relative; margin-top: 20em; z-index: 20; font-weight: 200;}

.cursor {
    position: fixed;
    background: #fff;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border-radius: 50%;
    will-change: transform;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
}

::selection {
    color: #fff;
    background: #000;
}

/* Clients Section */
.clients {
    text-align: center;
    margin-bottom: 100px;
    overflow: hidden;
}

.clients h3 {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

.client-logos-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

.client-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: slide 20s linear infinite;
    width: fit-content;
}

.client-logo {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.client-logo:hover {
    opacity: 1;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Featured Work */
.featured-work {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    max-width: 750px;
    margin: 0 auto 60px;
}
.text-left{text-align: left;}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.work-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: radial-gradient(50% 50% at 50% 100%, rgba(129, 74, 200, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.work-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

 .work-image .portfolio-image {
position: relative;
overflow: auto;
aspect-ratio: 16/10;
}
.work-image .portfolio-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease-in-out;
}

.work-content {
    padding: 25px;
}

.work-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.work-title a {
  color: inherit;
  text-decoration: none;
}

.work-title a {
  background:
    linear-gradient(
      to right,
      rgba(100, 200, 200, 0),
      rgba(100, 200, 200, 0)
    ),
    linear-gradient(
      to right,
      #8b5cf6,
      rgba(255, 0, 180, 1),
      rgba(0, 100, 200, 1)
  );
  background-size: 100% 3px, 0 3px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 400ms;
}

.work-title a:hover {
  background-size: 0 3px, 100% 3px;
}

.work-line {
  background:
    linear-gradient(
      to right,
      rgba(100, 200, 200, 0),
      rgba(100, 200, 200, 0)
    ),
    linear-gradient(
      to right,
      #8b5cf6,
      rgba(255, 0, 180, 1),
      rgba(0, 100, 200, 1)
  );
  background-size: 100% 3px, 0 3px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 400ms;
  background-size: 0 3px, 100% 3px;
  color: #fff;
}

.work-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.work-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/*Bento Grid */

.bento-grid {
           display: grid;
           grid-template-columns: repeat(12, 1fr);
           gap: 40px;
           animation: fadeIn 1s ease;
       }

       .grid-item {
           border-radius: 24px;
           overflow: hidden;
           position: relative;
           cursor:default;
           transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
           background: #1a1a1a;
           border: 1px solid #2a2a2a;
       }

       .grid-item:hover {

           border-color: #3a3a3a;
       }

       .grid-item::before {
           content: '';
           position: absolute;
           inset: 0;
           background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
           opacity: 0;
           transition: opacity 0.4s ease;
           z-index: 2;
       }

       .grid-item:hover::before {
           opacity: 1;
       }

       .item-image-wrapper {
           width: 100%;
           height: 100%;
           position: absolute;
           top: 0;
           left: 0;
           overflow: hidden;
       }

       .item-image {
           width: 100%;
           height: 100%;
           object-fit: cover;
           transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
           background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
           display: flex;
           align-items: center;
           justify-content: center;
           font-size: 4rem;
           color: rgba(255,255,255,0.3);
       }

       .item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: top Center;
            /* filter: brightness(1.05) contrast(1.1) saturate(1.15); */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        .grid-item:hover .item-image {
            transform: scale(1.10);
            /* filter: brightness(1.1) contrast(1.15) saturate(1.2); */
        }

        .grid-item:hover .item-image img {
            /* filter: brightness(1.1) contrast(1.15) saturate(1.2); */
        }

       .grid-item:hover .item-image {
           transform: scale(1.05);
       }

       .item-overlay {
           position: absolute;
           inset: 0;
           background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%);
           z-index: 1;
       }

       .item-content {
           padding: 40px;
           height: 100%;
           display: flex;
           flex-direction: column;
           justify-content: flex-end;
           position: relative;
           z-index: 2;
           background: linear-gradient(180deg,
                rgba(0,0,0,0) 0%,
                rgba(0,0,0,0.1) 50%,
                rgba(0,0,0,0.5) 70%,
                rgba(0,0,0,0.95) 100%);
       }

       .item-text {
           position: relative;
           z-index: 2;
       }

       .item-category {
           display: inline-block;
           padding: 5px 10px;
           background: rgba(255,255,255,0.15);
           backdrop-filter: blur(10px);
           border-radius: 20px;
           font-size: 0.8rem;
           font-weight: 500;
           margin-bottom: 16px;
           border: 1px solid rgba(255,255,255,0.2);
       }

       .item-title {
           font-size: clamp(1.5rem, 2.5vw, 2.5rem);
           font-weight: 700;
           margin-bottom: 12px;
           line-height: 1.2;
       }

       .item-title a {
         color: inherit;
         text-decoration: none;
    background: linear-gradient(to right, rgba(100, 200, 200, 0), rgba(100, 200, 200, 0)), linear-gradient(to right, #8b5cf6, rgba(255, 0, 180, 1), rgba(0, 100, 200, 1));
    background-size: 100% 3px, 0 3px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 400ms;
}

 .item-title a:hover {
  background-size: 0 .2em, 100% .2em;
}

       .item-description {
           font-size: 1rem;
           color: #e0e0e0;
           line-height: 1.6;
           opacity: 0.9;
       }

       /* Grid Layout */
       .large {
           grid-column: span 8;
           min-height: 600px;
       }

       .medium {
           grid-column: span 4;
           min-height: 600px;
       }

       .small {
           grid-column: span 4;
           min-height: 400px;
       }

       .wide {
           grid-column: span 6;
           min-height: 450px;
       }

       .tall {
           grid-column: span 6;
           min-height: 700px;
       }



       /* Placeholder Icon */
       .placeholder-icon {
           font-size: 5rem;
           opacity: 1;
       }

       /* Animations */
       @keyframes fadeIn {
           from {
               opacity: 0;
               transform: translateY(20px);
           }
           to {
               opacity: 1;
               transform: translateY(0);
           }
       }

       @keyframes fadeInDown {
           from {
               opacity: 0;
               transform: translateY(-20px);
           }
           to {
               opacity: 1;
               transform: translateY(0);
           }
       }

       /* Responsive Design */
       @media (max-width: 1024px) {
           .large, .medium, .small, .wide, .tall {
               grid-column: span 6;
               min-height: 450px;
           }
       }

       @media (max-width: 768px) {
           .large, .medium, .small, .wide, .tall {
               grid-column: span 12;
               min-height: 400px;
           }

           .bento-grid {
               gap: 16px;
           }

           .item-content {
               padding: 30px;
           }

           header {
               margin-bottom: 40px;
           }

           .item-title {
               font-size: 1.75rem;
           }
       }

       @media (max-width: 480px) {
           body {
               padding: 20px 16px;
           }

           .item-content {
               padding: 24px;
           }

           .item-title {
               font-size: 1.5rem;
           }

           .placeholder-icon {
               font-size: 3rem;
           }
       }


       /* Image Background Colors */
       .bg-purple {
           background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       }

       .bg-blue  {
           background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
       }

       .bg-orange {
           background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
       }

       .bg-green  {
           background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
       }

       .bg-pink {
           background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
       }

       .bg-teal {
           background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
       }

       .bg-violet {
           background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
       }

       .bg-sunset  {
           background: linear-gradient(135deg, #ff6e7f 0%, #bfe9ff 100%);
       }


.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.stat-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

/* Experience Section */
.experience {
    padding: 100px 0;
}

.experience-list {
    max-width: 800px;
    margin: 0 auto;
}

.experience-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.experience-title {
    font-size: 1.4em;
    font-weight: 600;
    color:#fff;
}

.experience-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.experience-company {
    color: #667eea;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap:2em;
}

.experience-description {
    color: rgba(255, 255, 255, 0.7);
}

.experience-description ul {
    padding-left: 20px;
    margin-top: 10px;
}


.accordion {
  border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item.active {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    transition: all 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
  background: linear-gradient(149deg, rgba(129, 74, 200, .4) 0%, var(--token-b2fb23d9-6070-4f2d-b3d0-2fe68c4f2aab, rgba(13, 13, 13, .8)) 28.999999999999996%, var(--token-b2fb23d9-6070-4f2d-b3d0-2fe68c4f2aab, rgba(13, 13, 13, .8)) 74%, rgba(129, 74, 200, .4) 100%);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.accordion-item.active .accordion-icon {
    transform: scale(1.1);
}

.accordion-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #6b7280;
}

.accordion-toggle::before {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle::before {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.accordion-text {
  color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.accordion-text h4{color:#fff; padding: 15px 0;}

.accordion-item.active .accordion-text {
    opacity: 1;
    transform: translateY(0);
}

.feature-list {
    list-style: none;

}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.6);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    .accordion-header {
        padding: 20px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 20px 20px 20px;
    }

    .accordion-title {
        font-size: 1rem;
    }

    .accordion-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}



/* Skills Section */
.skills {
    padding: 100px 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
    background: radial-gradient(50% 50% at 50% 100%, rgba(129, 74, 200, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

.skill-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin: 10px  10px 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);

}


.skill-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

}

/* Impact Section */
.impact {
    padding: 100px 0;
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.impact-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
    background: radial-gradient(50% 50% at 50% 100%, rgba(129, 74, 200, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    margin-bottom: 10px;
    background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-background-clip: text !important;
      background-clip: text;
      white-space: nowrap;
}

.impact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Project Section */
.project-overview {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
    background: radial-gradient(50% 50% at 50% 100%, rgba(129, 74, 200, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

.overview-title {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff;
}
.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}
.overview-content h3{color: #fff;}

.overview-description {
    color: #a0a0a0;
    line-height: 1.8;
    padding-top: 20px;
}
.overview-item {
    margin-bottom: 16px;
    color: #a0a0a0;
}
.team-list {
    margin-top: 4px;
    margin-bottom: 12px;
}
.team-list li {
    padding: 4px 0;
    color: #a0a0a0;
    position: relative;
    margin-left: 20px;
}

/* Two Column Layout - Generic Reusable */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Content on left, image on right */
.two-col.content-left {
    grid-template-columns: 1fr 1fr;
}

/* Image on left, content on right */
.two-col.image-left {
    grid-template-columns: 1fr 1fr;
}

.two-col.image-left .col-image {
    order: -1;
}

/* 60/40 Split - Content heavy */
.two-col.split-60-40 {
    grid-template-columns: 1.5fr 1fr;
}

/* 40/60 Split - Image heavy */
.two-col.split-40-60 {
    grid-template-columns: 1fr 1.5fr;
}

/* 70/30 Split - Content dominant */
.two-col.split-70-30 {
    grid-template-columns: 2.33fr 1fr;
}

/* 30/70 Split - Image dominant */
.two-col.split-30-70 {
    grid-template-columns: 1fr 2.33fr;
}

.two-col .col-content {
    display: flex;
    flex-direction: column;
}

.two-col .col-image {
    position: sticky;
    top: 24px;
}

/* Non-sticky option */
.two-col.no-sticky .col-image {
    position: relative;
    top: 0;
}

/* Center aligned columns */
.two-col.align-center {
    align-items: center;
}

/* Bottom aligned columns */
.two-col.align-bottom {
    align-items: end;
}

.two-col .image-placeholder {
    margin: 0;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.two-col .image-placeholder img {
    width: 100%;
}

.two-col h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 16px;
}

.two-col h2::before {
    content: '⚡';
    font-size: 2rem;
    flex-shrink: 0;
}

.two-col h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 16px;
    margin-top: 40px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.two-col h3::before {
    content: '▸';
    color: #8b5cf6;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.two-col h4 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.two-col h4::before {
    content: '•';
    color: #4a90e2;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.two-col p {
    font-size: 1.125rem;
    color: #b0b0b0;
    margin-bottom: 24px;
}

.two-col ul {
    list-style: none;
    padding-left: 0;
}

.two-col li {
    font-size: 1rem;
    color: #a0a0a0;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.two-col li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #a855f7;
}


.wave{
  height: 50px;
  position: relative;
  background: transparent;
  transfrom: scale(0.2);
}

/* Wave text css */
.wave {
  padding-top:25px;
  padding-bottom:25px;

}
/* */
/* Wave Border */

.wave::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 10px;
  background-size: 20px 20px;
  background-image:
   radial-gradient(circle at 10px -5px, transparent 12px, #121226 13px);
}
.wave::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 15px;
  background-size: 40px 20px;
  background-image:
    radial-gradient(circle at 10px 15px, #121226 12px, transparent 13px);
}



/* Contact Section */
.contact {
    padding: 100px 0;
    text-align: center;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
    background: linear-gradient(149deg, rgba(129, 74, 200, .4) 0%, var(--token-b2fb23d9-6070-4f2d-b3d0-2fe68c4f2aab, rgba(13, 13, 13, .8)) 28.999999999999996%, var(--token-b2fb23d9-6070-4f2d-b3d0-2fe68c4f2aab, rgba(13, 13, 13, .8)) 74%, rgba(129, 74, 200, .4) 100%);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .client-logos {
        gap: 20px;
    }

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

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .experience-header {
        flex-direction: column;
        gap: 5px;
    }

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

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero-subtitle,
.hero-description {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-description {
    animation-delay: 0.4s;
}

.a-section {
    padding: 2em 0 0;
}
.a-section-marquee-box {
    height: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #8b5cf6;
    transform: rotateZ(-2deg);
     /* border: 1px solid #181818;
     white-space: nowrap; */
}
.a-section-marquee-box h2 {
    text-transform: uppercase;
    font-size: 3em;
    font-weight: 100;
    flex-shrink: 0;
    padding: 0 10px;
    width: max-content;
    display: flex;
    align-items: center;

    color:#fff;
    transform: translateX(0);
    animation: a-text-scroll 30s linear infinite;
}
@keyframes a-text-scroll {
    0% { transform: translate3d(-100%, 0, 0); }
    100% { transform: translate3d(0%, 0, 0); }
}




.b-section {
    padding: 2em 0 0;
}
.b-section-marquee-box {
    height: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #ff6b9d;

    transform: rotateZ(2deg);
}
.b-section-marquee-box h2 {
    white-space: nowrap;
    text-transform: uppercase;
    color: #fff;
    font-size: 3em;
    font-weight: 100;
    flex-shrink: 0;
    padding: 0 10px;
    width: max-content;
    display: flex;
    align-items: center;
    transform: translateX(0);
    animation: b-text-scroll 30s linear infinite;
}
@keyframes b-text-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}
