:root {
  --ca-bg: #0a0a0a;
  --ca-accent: #c5ff2d;
  --ca-text: #ffffff;
  --ca-gray: rgba(255, 255, 255, 0.1);
}

.ca-hero-section {
  background-color: var(--ca-bg);
  color: var(--ca-text);
  padding: 60px 20px;
  font-family: 'Inter', sans-serif; /* Use a bold sans-serif font */
  overflow: hidden;
  background: radial-gradient(circle at 20% 30%, #1a1a1a 0%, #0a0a0a 100%);
}

.ca-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.ca-header {
  margin-bottom: 40px;
}

.ca-header__row {
  display: flex;
  align-items: center;
  gap: 20px;
  line-height: 0.9;
}

.ca-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  letter-spacing: -2px;
}

.ca-play-pill {
  height: clamp(50px, 8vw, 90px);
  width: clamp(100px, 15vw, 180px);
  background: #e0e0e0;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 5px;
  position: relative;
  top: 10px;
}

.ca-play-btn {
  background: #000;
  width: 45%;
  height: 90%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ca-play-btn svg {
  width: 25px;
  fill: var(--ca-accent);
}

.ca-arrow-circle {
  width: clamp(50px, 8vw, 90px);
  height: clamp(50px, 8vw, 90px);
  border: 1px dashed var(--ca-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ca-accent);
  color: #000;
}

.ca-arrow-circle svg {
  width: 40%;
}

/* Content Grid Area */
.ca-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  align-items: flex-start;
  position: relative;
}

.ca-image-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  height: 500px;
}

.ca-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Tags */
.ca-tags {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ca-tag {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: max-content;
}

/* Info Box (Right Side) */
.ca-info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-top: 20px;
}

.ca-star-icon svg {
  width: 30px;
  height: 30px;
}

.ca-info-text {
  font-size: 18px;
  line-height: 1.4;
  color: #ccc;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .ca-content-grid {
    grid-template-columns: 1fr;
  }
  
  .ca-info-box {
    order: -1;
    margin-bottom: 20px;
  }

  .ca-image-wrapper {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .ca-header__row {
    gap: 10px;
  }
  
  .ca-play-pill, .ca-arrow-circle {
    display: none; /* Hide decorative icons on very small screens to save space */
  }

  .ca-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --nv-primary: #000000;
    --nv-accent: #c5ff2d; /* Lime green from image */
    --nv-fade: #bbbbbb;
    --nv-bg: #ffffff;
}

.nv-about-section {
    background-color: var(--nv-bg);
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    color: var(--nv-primary);
}

.nv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

/* Sidebar Text */
.nv-label-col {
    flex: 0 0 200px;
}

.nv-sidebar-text {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    white-space: nowrap;
}

/* Main Content */
.nv-content-col {
    flex: 1;
}

.nv-main-heading {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 60px;
    letter-spacing: -1.5px;
}

.nv-text-fade {
    color: var(--nv-fade);
}

/* Stats Section */
.nv-stats-grid {
    display: flex;
    margin-bottom: 50px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.nv-stat-item {
    flex: 1;
    padding: 0 30px;
    border-right: 1px solid #eee;
}

.nv-stat-item:last-child { border-right: none; }
.nv-stat-item:first-child { padding-left: 0; }

.nv-stat-num {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}

.nv-stat-num span {
    font-size: 0.7em;
    font-weight: 600;
}

.nv-stat-desc {
    font-size: 18px;
    font-weight: 600;
    color: #444;
}

/* Button */
.nv-cta-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--nv-accent);
    color: var(--nv-primary);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.nv-cta-btn svg {
    width: 20px;
    margin-left: 12px;
}

.nv-cta-btn:hover {
    transform: scale(1.05);
    background-color: #b1e628;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .nv-container { flex-direction: column; gap: 30px; }
    .nv-label-col { flex: none; }
    .nv-stats-grid { flex-wrap: wrap; gap: 30px; }
    .nv-stat-item { flex: 0 0 calc(50% - 30px); border-right: none; padding: 0; }
}

@media (max-width: 600px) {
    .nv-stat-item { flex: 0 0 100%; }
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap');

.tm-template-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #000;
}

.tm-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Logic */
.tm-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.tm-header-left { flex: 1; }
.tm-header-right { flex: 1; max-width: 450px; }

.tm-main-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.tm-sub-description {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.tm-cta-blue {
    display: inline-block;
    background-color: #5c5cfc;
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.tm-cta-blue:hover { opacity: 0.9; transform: translateY(-2px); }

/* Grid Logic */
.tm-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tm-card {
    background: #eeeeee;
    padding: 40px 30px;
    border-radius: 24px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tm-card:hover {
    background: #e8e8e8;
    transform: translateY(-5px);
}

.tm-icon-box {
    width: 54px;
    height: 54px;
    background-color: #5c5cfc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.tm-icon-box svg { width: 26px; height: 26px; }
.tm-icon-text { color: white; font-weight: 700; font-size: 18px; }

.tm-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tm-card-text {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 30px;
    flex-grow: 1;
}

.tm-btn-black {
    background: #111;
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.tm-btn-black:hover { background: #333; }

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .tm-header { flex-direction: column; gap: 20px; }
    .tm-header-right { max-width: 100%; }
    .tm-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .tm-card-grid { grid-template-columns: 1fr; }
    .tm-main-title { font-size: 40px; }
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --rp-bg: #f5f5f5;
    --rp-accent: #c5ff2d;
    --rp-dark: #000000;
}

.rp-portfolio-section {
    background-color: var(--rp-bg);
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    color: var(--rp-dark);
}

.rp-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Header & Filters */
.rp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.rp-subtitle { font-size: 14px; font-weight: 700; color: var(--rp-dark); margin-bottom: 15px; display: block; }
.rp-main-title { font-size: clamp(40px, 6vw, 74px); font-weight: 800; margin: 0; line-height: 0.9; }

.rp-filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-start; }

.rp-filter-btn {
    background: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rp-filter-btn span { font-size: 18px; }

.rp-filter-btn.rp-active {
    background: var(--rp-dark);
    color: #fff;
}

/* Project Grid */
.rp-project-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.rp-card { grid-column: span 5; } /* Small cards span 5 columns */
.rp-card--large { grid-column: span 7; } /* Large cards span 7 columns */

.rp-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #eee;
}

.rp-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rp-card:hover img { transform: scale(1.08); }

/* Floating Arrow Button */
.rp-float-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--rp-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: 0.3s;
}

.rp-float-btn svg { width: 24px; color: #000; }

/* Info Area */
.rp-info { display: flex; justify-content: space-between; align-items: center; }
.rp-project-name { font-size: 24px; font-weight: 700; margin: 0; }
.rp-tags { display: flex; gap: 10px; }
.rp-tag {
    background: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .rp-card, .rp-card--large { grid-column: span 12; }
    .rp-header { flex-direction: column; align-items: flex-start; }
    .rp-project-name { font-size: 20px; }
}

@media (max-width: 600px) {
    .rp-info { flex-direction: column; align-items: flex-start; gap: 10px; }
    .rp-tag { font-size: 11px; }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

.ex-bento-section {
    background-color: #0c0c0c; /* Black background like image frame */
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}

.ex-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between rows */
}

/* Card Base Styles */
.ex-card {
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.ex-card--purple {
    background: linear-gradient(135deg, #5c5cfc 0%, #4b4bdf 100%);
    color: white;
}

.ex-card--lime {
    background-color: #c5ff2d;
    color: #000;
}

/* Headings */
.ex-heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

/* Pill/Tag Groups */
.ex-pill-group, .ex-logo-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ex-pill-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Fancy Double Border Pill (Numbers) */
.ex-fancy-pill {
    display: inline-block;
    font-size: 42px;
    font-weight: 800;
    padding: 10px 30px;
    background: #000;
    color: #fff;
    border-radius: 100px;
    position: relative;
    margin-bottom: 25px;
    border: 3px solid #000;
}

/* Recreating that layered "sticker" look */
.ex-fancy-pill::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 2px solid #000;
    border-radius: 100px;
    pointer-events: none;
}

/* Stat Text */
.ex-stat-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.ex-stat-text {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
}

/* Middle Row Layout */
.ex-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Logo Section Pills */
.ex-logo-pill {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 25px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    text-transform: lowercase;
    margin-bottom: 20px;
}

/* Responsive Logic */
@media (max-width: 768px) {
    .ex-stats-row {
        grid-template-columns: 1fr;
    }
    
    .ex-card {
        padding: 30px 20px;
    }

    .ex-heading {
        font-size: 28px;
    }

    .ex-fancy-pill {
        font-size: 32px;
    }
}

:root {
    --h-blue: #2234f1;
    --h-pink: #ff4081;
    --h-lime: #a3e635;
    --h-dark: #0f1014;
}

.h-hero-v1 {
    background-color: var(--h-blue);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif; /* Use a clean sans-serif */
    padding: 20px;
}

.h-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

/* Heading Styling */
.h-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    color: white;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.h-highlight {
    background-color: var(--h-pink);
    padding: 0 15px;
    display: inline-block;
    border-radius: 4px;
}

/* Individual Letter Animation Classes */
.h-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.h-char.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Word animation (prevents mid-word line breaks) */
.h-word{
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.h-word.fade-in{
    opacity: 1;
    transform: translateY(0);
}

/* Form Styling */
.h-form-container {
    display: flex;
    justify-content: center;
}

.h-email-form {
    background: white;
    padding: 6px;
    border-radius: 12px;
    display: flex;
    width: 100%;
    max-width: 450px;
}

.h-cta-row{
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.h-ctaBtn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.h-ctaBtn--dark{
    background: var(--h-dark);
    color: #fff;
    box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}
.h-ctaBtn--light{
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(8px);
}
.h-ctaBtn:hover{
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.22);
}

.h-input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    outline: none;
    color: var(--h-dark);
}

.h-submit-btn {
    background: var(--h-dark);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.h-submit-btn:hover {
    background: #000;
    transform: scale(1.02);
}

/* Visuals/Graphics Placeholder Positions */
.h-floating {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.h-img-left {
    bottom: 0px;
    left: 5%;
    width: 100%;
    max-width: 500px;
    transform: rotate(-10deg);
}

.h-img-right {
    bottom: -10px;
    right: 5%;
    width: 40%;
    max-width: 500px;
}

.h-cursor-arrow {
    position: absolute;
    bottom: 25%;
    right: 15%;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 768px) {
    .h-email-form {
        flex-direction: column;
        background: transparent;
        padding: 0;
        gap: 10px;
    }
    .h-input, .h-submit-btn {
        width: 100%;
        border-radius: 10px;
    }
    .h-input { background: white; }
    .h-visuals { display: none; } /* Hide heavy graphics on mobile */
    .h-cta-row{
        width: 100%;
    }
    .h-ctaBtn{
        width: 100%;
        max-width: 450px;
    }
}
