:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --primary-red: #ff2a2a;
    --primary-grey: #f5f5f5;
    --light-grey: #888888;
    --bg-dark: #fafafa;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--primary-white);
    color: var(--primary-black);
    line-height: 1.6;
    overflow-x: hidden;
    animation: fadeInPage 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInPage {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

body.fade-out {
    animation: fadeOutPage 0.4s ease-in forwards;
}

@keyframes fadeOutPage {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-black);
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav a {
    text-decoration: none;
    color: var(--primary-black);
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav a:hover {
    color: var(--primary-red);
}

.nav-btn {
    text-decoration: none;
    color: var(--primary-white);
    background: var(--primary-red);
    border: 1px solid var(--primary-red);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    border-color: var(--primary-white);
}

/* Base Badge styles */
.badge-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 2px;
    border-radius: 50px;
    overflow: hidden;
}

.badge-ring {
    position: absolute;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg, transparent 70%, var(--primary-red) 100%);
    animation: rotate-ring 3s linear infinite;
    z-index: 0;
}

.badge {
    position: relative;
    background: var(--primary-black);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1;
}

@keyframes rotate-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Typography styles */
.highlight {
    color: var(--primary-red);
}
.highlight-text {
    color: var(--primary-red);
    font-weight: 600;
}

/* Sections Layout */
section {
    min-height: 100vh;
    padding: 8rem 8% 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at 10% 20%, #ffffff 0%, var(--bg-dark) 50%);
    min-height: 85vh;
    padding-bottom: 1rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-heading {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-subheading {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.hero-desc {
    color: var(--light-grey);
    font-size: 1.1rem;
    max-width: 80%;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.hero-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.circle-accent {
    position: absolute;
    width: 450px;
    height: 450px;
    background: var(--primary-red);
    border-radius: 50% 30% 60% 40% / 30% 40% 60% 50%;
    z-index: 0;
    filter: blur(4px);
    opacity: 0.9;
    transform: translate(-20px, 20px);
    animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {
    0% { transform: translate(-20px, 20px) scale(1); border-radius: 50% 30% 60% 40% / 30% 40% 60% 50%; }
    33% { transform: translate(15px, -15px) scale(1.05); border-radius: 40% 60% 30% 70% / 50% 60% 40% 30%; }
    66% { transform: translate(-10px, -30px) scale(0.95); border-radius: 60% 40% 50% 30% / 40% 30% 70% 60%; }
    100% { transform: translate(-20px, 20px) scale(1); border-radius: 50% 30% 60% 40% / 30% 40% 60% 50%; }
}

.profile-placeholder {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: imageMorph 10s ease-in-out infinite alternate;
}

@keyframes imageMorph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    100% { border-radius: 50% 50% 60% 40% / 50% 40% 50% 60%; }
}

.profile-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    mix-blend-mode: multiply;
    filter: contrast(1.1);
}

/* About Section */
.about {
    background: var(--bg-dark);
    padding-top: 4rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-desc {
    color: var(--light-grey);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 90%;
    font-weight: 300;
}

.about-image-area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blob-accent {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-red);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
    animation: blobMorph 8s ease-in-out infinite alternate;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes blobMorph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.about-profile {
    position: relative;
    width: 380px;
    height: 520px;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
    margin-bottom: 2rem;
}

.about-profile:hover {
    transform: rotate(0deg);
}

.grayscale-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease;
}

.about-profile:hover .grayscale-img {
    filter: grayscale(0%);
}

.social-icons {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 32, 32, 0.4);
}

/* Featured Projects Portfolio Section */
.portfolio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-grey);
    width: 100%;
    padding: 8rem 8% 4rem;
}

.portfolio-header-container {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-black);
}

.highlight-red {
    color: var(--primary-red);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    border: none;
    background: var(--primary-grey);
    color: var(--primary-black);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-red);
    color: #ffffff;
    box-shadow: 0 8px 15px rgba(255, 42, 42, 0.3);
    transform: translateY(-2px);
}

/* Project Masonry Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
}

.project-card {
    position: relative;
    border-radius: 16px;
    background: var(--primary-white);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.project-card.hide {
    display: none;
}

.project-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    display: block;
    transition: transform 0.5s ease;
}

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

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

/* Card Hover Overlay */
.card-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .card-hover-overlay {
    opacity: 1;
}

.hover-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    transform: translateY(15px);
    transition: transform 0.3s ease;
}

.hover-category {
    font-size: 1rem;
    color: var(--primary-grey);
    transform: translateY(15px);
    transition: transform 0.3s ease 0.1s;
}

.project-card:hover .hover-title,
.project-card:hover .hover-category {
    transform: translateY(0);
}

/* Services Section */
.services {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg-dark);
    width: 100%;
    padding: 8rem 8% 4rem;
}

.services-header {
    text-align: left;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.services-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: 1rem;
    color: var(--primary-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
}

.service-card {
    display: flex;
    align-items: stretch;
    background: var(--primary-black);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(230, 32, 32, 0.1);
}

.service-number-block {
    position: relative;
    width: 120px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #8a0c0c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

/* Diagonal line pattern */
.diagonal-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 5px,
        rgba(0,0,0,0.15) 5px,
        rgba(0,0,0,0.15) 10px
    );
    z-index: 0;
}

.service-number {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    transform: rotate(-90deg);
}

.service-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 1rem;
    color: var(--light-grey);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary-black);
    width: 100%;
    padding: 8rem 8% 4rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: 1rem;
    color: var(--primary-white);
}

.contact-content {
    width: 100%;
    max-width: 800px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: #151515;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(230, 32, 32, 0.2);
}

.contact-form .btn-primary {
    background-color: #ffffff;
    color: #000000;
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: fit-content;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-form .btn-primary.btn-success {
    background-color: var(--primary-red);
    color: #ffffff;
    pointer-events: none;
}

/* Footer Section */
.footer {
    width: 100%;
    background: var(--primary-black);
    padding: 5rem 8% 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    width: 100%;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--light-grey);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--light-grey);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-red);
}

.footer-col.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-col.contact-info i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

/* Project Details Styles */
.project-hero {
    padding: 12rem 8% 4rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary-grey);
}

.project-header-info {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
}

.project-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.project-subtitle {
    font-size: 1.2rem;
    color: var(--light-grey);
    line-height: 1.6;
}

.project-hero-image {
    width: 100%;
    margin-bottom: 2rem;
}

.large-placeholder {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(145deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary-black);
    border: 1px solid rgba(0,0,0,0.05);
}

.project-content {
    padding: 2rem 8% 6rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-block h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.content-block p {
    font-size: 1.1rem;
    color: var(--light-grey);
    line-height: 1.8;
}

.project-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
}

.gallery-placeholder {
    aspect-ratio: 16 / 9;
    background: #e0e0e0;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary-grey);
    border: 1px solid rgba(255,255,255,0.05);
}

.social-metrics-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.metrics-left, .metrics-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.view-counter {
    color: var(--light-grey);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-counter i {
    font-size: 1.3rem;
}

.action-btn {
    background: transparent;
    border: 1px solid var(--primary-grey);
    color: var(--primary-white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: var(--primary-white);
}

.action-btn.active {
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.action-btn.active i {
    animation: pulseHeart 0.3s ease-in-out;
}

@keyframes pulseHeart {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    section, .services, .portfolio, .contact, .footer, .project-hero, .project-content {
        padding-left: 5%;
        padding-right: 5%;
    }
    section {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 7rem;
    }
    .services-grid, .footer-grid, .project-gallery {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-col {
        align-items: center;
        text-align: center;
    }
    .hero-content, .about-content {
        align-items: center;
    }
    .hero-desc, .about-desc {
        max-width: 100%;
    }
    .hero-heading {
        font-size: 3.5rem;
    }
    .about-heading {
        font-size: 2.5rem;
    }
    .nav {
        display: none; /* simple mobile hide for now */
    }
    .circle-accent, .profile-placeholder {
        width: min(400px, 90vw);
        height: min(400px, 90vw);
    }
    .blob-accent {
        width: min(350px, 85vw);
        height: min(350px, 85vw);
    }
    .about-profile {
        width: min(350px, 85vw);
        height: min(480px, 115vw);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1.5rem 5%;
    }
    .hero-heading {
        font-size: 2.8rem;
    }
    .hero-subheading {
        font-size: 1.5rem;
    }
    .about-heading, .services-heading, .section-heading, .contact-heading, .project-title {
        font-size: 2.2rem;
    }
    .services-header {
        align-items: center;
        text-align: center;
    }
    .giant-type {
        font-size: 22vw;
        letter-spacing: -3px;
    }
    .softwares-grid {
        gap: 1.5rem;
    }
    .software-icon {
        width: 60px;
        height: 60px;
    }
    .circle-accent, .profile-placeholder {
        width: min(300px, 85vw);
        height: min(300px, 85vw);
    }
    .blob-accent {
        width: min(280px, 85vw);
        height: min(280px, 85vw);
    }
    .about-profile {
        width: min(280px, 85vw);
        height: min(380px, 115vw);
    }
    .skills-container p {
        font-size: 1rem !important;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .skills-container span {
        display: none; /* hide the vertical separators explicitly since elements are stacked */
    }
}

@media (max-width: 480px) {
    section, .services, .portfolio, .contact, .project-hero, .project-content {
        padding-top: 5rem;
    }
    .hero-heading {
        font-size: 2.2rem;
    }
    .btn-primary {
        padding: 0.8rem 2rem;
    }
}

/* Toast Notification Styles */
.toast {
    position: fixed;
    bottom: -100px;
    right: 30px;
    background: #00ca51;
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 202, 81, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
}

.toast.show {
    bottom: 30px;
}

/* Giant Typography Overlap */
.giant-type-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 4rem;
    padding-bottom: 2rem;
    z-index: 10;
    pointer-events: auto; /* Required to catch hover */
    background: #000000;
    display: flex;
    justify-content: center;
}

.giant-type {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 18vw; 
    line-height: 0.8;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: -6px;
    color: #1a1a1a; /* Dark grey baseline */
    text-align: center;
    position: relative;
    z-index: 1;
    user-select: none;
}

/* Spotlight layer mask */
.giant-type::after {
    content: 'BRANDORA';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #ffffff; /* Bright white text in spotlight */
    -webkit-mask-image: radial-gradient(circle 250px at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, transparent 100%);
    mask-image: radial-gradient(circle 250px at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.giant-type-container:hover .giant-type::after {
    opacity: 1;
}

/* Softwares Section */
.softwares-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.software-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    cursor: default;
}

.software-icon:hover {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 15px 30px rgba(230, 32, 32, 0.2);
    z-index: 2;
}

.antigravity-icon {
    border: 1px solid rgba(0,0,0,0.08);
    background-color: #ffffff;
}
