:root {
    --bg: #0a0a0c;
    --bg-elev: #101015;
    --text: #e9e9ee;
    --muted: #b0b0b8;
    --pink: #ff005c;
    --ring: 0 0 0 1px rgba(255,255,255,.06), 0 8px 30px rgba(0,0,0,.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Arial, sans-serif;
    line-height: 1.6;
    background: 
        radial-gradient(1200px 800px at 10% -10%, rgba(193,18,33,.08), transparent 60%),
        radial-gradient(900px 700px at 110% 10%, rgba(193,18,33,.06), transparent 60%);
    color: var(--text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */


/* Hero Section with Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(255,0,92,0.4) 0%, rgba(0,0,0,0.8) 50%, rgba(193,18,33,0.3) 100%),
        url('/Screenshot 2025-08-24 031832.png');
    background-size: cover;
    background-position: center;
    filter: blur(1px);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    color: white;
}

.hero-watermark {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 140px;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.hero-title {
    position: relative;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.accent {
    color: var(--pink);
    text-shadow: 0 8px 30px rgba(255,45,122,.25);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-primary {
    background: var(--pink);
    color: white;
}

.btn-primary:hover {
    background: #e6005c;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,0,92,0.4);
}

.btn-secondary {
    background: white;
    color: var(--pink);
}

.btn-secondary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--pink);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--bg-elev);
    color: var(--muted);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--pink);
    color: white;
    border-color: var(--pink);
    box-shadow: 0 8px 24px rgba(255,0,92,0.3);
}

/* Projects Grid - Portfolio Style */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.project-card {
    background: var(--bg-elev);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.project-preview {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.project-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-preview img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.project-category {
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.project-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status.featured {
    background: var(--pink);
    color: white;
}

.project-status.popular {
    background: #00e676;
    color: white;
}

.project-info {
    padding: 28px 24px;
}

.project-title {
    color: var(--text);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-description {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag {
    background: rgba(255,0,92,0.1);
    color: var(--pink);
    border: 1px solid rgba(255,0,92,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: #ff3385;
    transform: translateX(4px);
}

.load-more-container {
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: var(--pink);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Project Details Styles */
.project-hero {
    padding: 140px 0 80px;
    background: var(--bg);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 0.9rem;
        text-align: center;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
    text-align: center;
}

.breadcrumb a:hover {
    color: var(--text);
}

.breadcrumb i {
    color: var(--muted);
    font-size: 0.8rem;
}

.breadcrumb span {
    color: var(--text);
    font-weight: 600;
}

.project-hero-content {
    max-width: 800px;
}

.project-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.project-category,
.project-year {
    background: var(--bg-elev);
    color: var(--text);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.08);
}

.project-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.1;
}

.project-hero-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.project-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--pink);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 600;
}

.project-showcase {
    padding: 60px 0;
    background: var(--bg);
}

.showcase-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-details {
    padding: 80px 0;
    background: var(--bg-elev);
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.details-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 24px;
}

.details-text {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 40px 0 20px 0;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--muted);
}

.features-list i {
    color: #00e676;
    font-size: 1rem;
}

.sidebar-card {
    background: var(--bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.tech-stack {
    display: grid;
    gap: 12px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.tech-item i {
    color: var(--pink);
    font-size: 1.2rem;
    width: 20px;
}

.tech-item span {
    color: var(--text);
    font-weight: 600;
}

.project-info-list {
    display: grid;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.info-label {
    color: var(--muted);
    font-size: 0.9rem;
}

.info-value {
    color: var(--text);
    font-weight: 600;
}

.project-gallery {
    padding: 80px 0;
    background: var(--bg);
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.next-project {
    padding: 80px 0;
    background: var(--bg-elev);
}

.next-project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.next-label {
    color: var(--pink);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.next-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    margin: 8px 0 12px 0;
}

.next-description {
    color: var(--muted);
    margin-bottom: 24px;
}

.next-project-image {
    border-radius: 12px;
    overflow: hidden;
}

.next-project-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Page Styles */
.contact-hero {
    padding: 140px 0 80px;
    background: var(--bg);
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.contact-watermark {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 140px;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.contact-hero-title {
    position: relative;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.1;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text);
}

.contact-stat i {
    color: var(--pink);
    font-size: 1.2rem;
}

.contact-main {
    padding: 80px 0;
    background: var(--bg-elev);
}

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

.contact-form-container {
    background: var(--bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.form-header {
    margin-bottom: 32px;
}

.form-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--muted);
    font-size: 1rem;
}

/* Container layout */
.contact-form {
    display: grid;
    gap: 24px;
}

/* Two-column rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Form groups */
.form-group {
    display: grid;
    gap: 8px;
}

/* Labels */
.form-group label {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Inputs, selects, textareas — include CF7 classes */
.form-group input,
.form-group select,
.form-group textarea,
.wpcf7-form-control {
    padding: 12px 16px;
    background: var(--bg-elev);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

/* Focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.wpcf7-form-control:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255,0,92,0.1);
}

/* Textarea specific */
.form-group textarea,
.wpcf7-textarea {
    resize: vertical;
    min-height: 120px;
}


.contact-info {
    display: grid;
    gap: 24px;
    align-content: start;
}

.info-card {
    background: var(--bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    text-align: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(255,0,92,0.3);
}

.info-icon i {
    color: white;
    font-size: 1.5rem;
}

.info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.info-text {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.info-link {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.info-link:hover {
    color: #ff3385;
}

.info-address {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-links {
    background: var(--bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    text-align: center;
}

.social-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-elev);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--pink);
    color: white;
    border-color: var(--pink);
    transform: translateY(-2px);
}

.contact-faq {
    padding: 80px 0;
    background: var(--bg);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 16px;
}

.faq-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: var(--bg-elev);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255,0,92,0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
}

.faq-question span {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-icon {
    color: var(--muted);
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
}

/* Contact Section */
.contact-section {
    background: #000;
    color: white;
    padding: 80px 0;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

/* Container for both custom and CF7 forms */
.contact-form,
.wpcf7 {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

/* Form rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Form groups */
.form-group,
.wpcf7-form-control-wrap {
    display: grid;
    gap: 8px;
    margin-bottom: 1.5rem;
}

/* Labels */
.form-group label,
.wpcf7-form-control-wrap label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

/* Inputs, textareas, selects */
.form-group input,
.form-group select,
.form-group textarea,
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-textarea,
.wpcf7-form-control.wpcf7-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #111;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

/* Focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.wpcf7-form-control:focus {
    outline: none;
    border-color: #FF0066;
}

/* Textarea specifics */
.form-group textarea,
.wpcf7-form-control.wpcf7-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit button */

.wpcf7-form-control.wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #FF0066;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

button.btn:hover,
.wpcf7-form-control.wpcf7-submit:hover {
    background: #e6005c;
}

/* Optional: maintain spacing in CF7 responses */
.wpcf7-response-output {
    color: #ff0066;
    margin-top: 1rem;
    font-weight: 600;
}.hidden-fields-container{
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .details-grid,
    .next-project-card,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 10px 16px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 16px 60px;
        min-height: 80vh;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-stats {
        gap: 24px;
        justify-content: center;
    }
    
    .social-icons {
        gap: 12px;
    }
    

    /* Center project hero content on mobile */
    .contact-hero-content {
        text-align: center;
    }
    
    .project-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content,
    .contact-hero-content {
        padding: 0 16px;
        text-align: center;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}



/* Footer */
/* Footer */
.main-footer {
  background: #000;
  padding: 40px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-logo {
  width: 32px;
  height: 32px;
  background: #FF0066;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
}

.footer-brand-name {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.footer-badge {
  background: #333;
  color: #999;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-copyright {
  color: #999;
  font-size: 14px;
}

.footer-buy-btn {
  background: #FF0066;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-buy-btn:hover {
  background: #e6005c;
  transform: translateY(-1px);
}


/* Project Overview Paragraphs */
.details-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: white;
}

/* Key Features List */
.details-content ul {
    list-style: none; /* remove default bullets */
    padding-left: 0;
    margin-bottom: 24px;
}

.details-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color:white;
    line-height: 25px;
}

.details-content ul li::before {
    content: "\f00c"; /* FontAwesome check icon */
    font-family: "Font Awesome 6 Free"; /* ensure you have FA loaded */
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: greenyellow; /* or your accent color */
}
