/* Reset & Variables */
:root {
    --bg-color: #000000;
    --bg-card: #141414;
    --accent-color: #d4f953;
    --text-white: #ffffff;
    --text-gray: #8e8e93;
    --border-color: #242424;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --cursor-color: #d4f953;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important; /* Hide default cursor to use custom cursor */
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0d0d0d;
}
::-webkit-scrollbar-thumb {
    background: #242424;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--cursor-color);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    /* Trail effect */
    transition: transform 0.08s cubic-bezier(0.25, 1, 0.5, 1), 
                width 0.2s, height 0.2s, border-color 0.2s, background-color 0.2s;
}

/* Cursor states on hover */
body.hovering-link .custom-cursor {
    width: 14px;
    height: 14px;
    background-color: var(--text-white);
}

body.hovering-link .custom-cursor-follower {
    width: 50px;
    height: 50px;
    border-color: var(--accent-color);
    background-color: rgba(212, 249, 83, 0.1);
}

body.hovering-button .custom-cursor-follower {
    display: none;
}

body.hovering-button .custom-cursor {
    width: 48px;
    height: 48px;
    background-color: var(--accent-color);
    mix-blend-mode: difference;
}

/* Grid & Layout Utilities */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--text-white);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.btn-arrow {
    margin-left: 8px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translate(3px, -3px);
}

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

.logo a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-color);
}

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

.nav-links > li {
    position: relative;
    padding: 10px 0;
}

.nav-links > li > a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.nav-links > li:hover > a {
    color: var(--accent-color);
}

.arrow {
    font-size: 0.75rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.nav-links > li:hover .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-card);
    min-width: 180px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    list-style: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-links > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    color: var(--text-gray);
    text-decoration: none;
    padding: 8px 20px;
    display: block;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 24px;
}

/* Hamburger Menu & Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: var(--bg-color);
    z-index: 999;
    padding: 40px;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-links li a {
    color: var(--text-white);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 80px 100px 80px;
    overflow: hidden;
}

.hero-bg-asset {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 50%;
    max-width: 600px;
    z-index: 1;
    pointer-events: none;
}

.hero-sphere-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(212, 249, 83, 0.15));
    animation: floatRotate 20s infinite linear;
    mix-blend-mode: screen;
}

@keyframes floatRotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.hero-top-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 40px;
    z-index: 2;
}

.hero-left-desc {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tag-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.hero-left-desc p {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.hero-right-desc {
    max-width: 320px;
}

.hero-right-desc p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-title-container {
    z-index: 2;
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero-title span {
    display: block;
    margin-bottom: -15px;
}

.hero-title span:last-child {
    margin-bottom: 0;
}

.hero-accent-star {
    color: var(--accent-color);
    display: inline-block;
    animation: spin 8s infinite linear;
    line-height: 1;
    vertical-align: middle;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-smiley {
    color: var(--accent-color);
    display: inline-block;
    font-family: Arial, sans-serif;
    transform: rotate(15deg);
    margin-left: 10px;
    line-height: 1;
    vertical-align: middle;
}

/* Log & Text Marquee */
.marquee-section {
    width: 100vw;
    overflow: hidden;
    background-color: #000;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    display: flex;
}

.marquee-wrapper {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
    animation: marqueeScroll 25s infinite linear;
}

.marquee-content.text-content {
    animation-duration: 20s;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.text-marquee-reverse .marquee-content {
    animation-direction: reverse;
}

.logo-item {
    display: flex;
    align-items: center;
}

.logo-svg-placeholder {
    height: 30px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.logo-svg-placeholder:hover {
    opacity: 1;
}

.logo-star {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.text-content span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-headline {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 32px;
}

.outline-text {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    color: transparent;
}

.highlight-text {
    color: var(--accent-color);
}

.more-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    text-decoration: none;
    border-bottom: 1px solid var(--text-white);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.more-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.link-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.more-link:hover .link-arrow {
    transform: translate(3px, -3px);
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-card {
    border-left: 2px solid var(--accent-color);
    padding-left: 32px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-white);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.stat-number:hover {
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-arrow {
    font-size: 0.85rem;
}

/* Services */
.services-list {
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 0;
    border-bottom: 1px solid var(--border-color);
    transition: border-color 0.3s, padding-left 0.3s;
    position: relative;
}

.service-item:hover {
    border-color: var(--text-white);
    padding-left: 20px;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-tag {
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    transition: color 0.3s;
}

.service-item:hover .service-name {
    color: var(--accent-color);
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-item:hover .arrow-btn {
    background-color: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    transform: rotate(45deg);
}

/* Floating service asset inside service card */
.services-floating-container {
    width: 250px;
    height: 250px;
    position: fixed;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transform: scale(0.6) translate(-50%, -50%);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.services-floating-container.active {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
}

.services-floating-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
    mix-blend-mode: screen;
}

/* Spinning Services starburst badge */
.more-services-badge-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.spinning-star-badge {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.starburst-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spin 15s infinite linear;
}

.starburst-svg path {
    fill: var(--accent-color);
}

.badge-text {
    position: relative;
    z-index: 2;
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    max-width: 90px;
    line-height: 1.2;
}

/* Portfolio Section */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-card);
    aspect-ratio: 4/3;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

.project-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: capitalize;
}

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

.project-tags .tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--text-gray);
    text-transform: uppercase;
}

/* Special Floating "SEE WORK" Badge for Project 2 */
.see-work-badge {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.3s, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10;
}

.project-card:hover .see-work-badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.badge-circle-svg {
    width: 90px;
    height: 90px;
    animation: spin 10s infinite linear;
}

.see-work-badge text {
    fill: #000;
}

/* Company Inside / Stats Section */
.company-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
}

.stat-box {
    text-align: center;
    padding: 40px;
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.stat-box-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.stat-box:hover .stat-box-num {
    color: var(--accent-color);
}

.stat-box-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* Awards */
.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.awards-left {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
}

.awards-trophy-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    animation: floatRotate 25s infinite linear;
    mix-blend-mode: screen;
}

.awards-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.award-item {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
}

.award-item:hover {
    padding-left: 12px;
    border-color: var(--text-white);
}

.award-year {
    color: var(--accent-color);
    font-weight: 700;
}

.award-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    transition: color 0.3s;
}

.award-item:hover .award-name {
    color: var(--accent-color);
}

.award-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.award-item:hover .award-arrow {
    transform: translate(3px, -3px);
}

/* Testimonials */
.testimonials {
    overflow: hidden;
}

.hero-text-marquee span {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-white);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    color: transparent;
    word-spacing: 5px;
    white-space: nowrap;
}

.testimonial-container {
    margin-top: 80px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-tag {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    display: block;
}

.testimonial-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    align-items: center;
}

.testimonial-img-box {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    width: 150px;
    height: 150px;
    border: 2px solid var(--accent-color);
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lime-star-overlay {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: var(--accent-color);
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.testimonial-quote {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--text-white);
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.author-title {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.testimonial-navigation {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    gap: 16px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: none;
    color: var(--text-white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.nav-btn:hover {
    background-color: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

/* Team Section */
.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background-color: var(--bg-card);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.team-card:hover .team-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 13, 13, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-card:hover .team-social-overlay {
    opacity: 1;
    transform: translateY(0);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--text-white);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: #000;
    transform: translateY(-3px);
}

.team-info {
    text-align: center;
}

.member-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.member-role {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Contact CTA Banner */
.cta-banner {
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.contact-cta-btn {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 950;
    color: #000;
    text-decoration: none;
    letter-spacing: -2px;
    transition: transform 0.3s;
}

.contact-cta-btn:hover {
    transform: scale(1.05);
}

/* Journal / Blog */
.journal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.journal-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s;
}

.journal-card:hover {
    border-color: var(--accent-color);
}

.journal-img-wrapper {
    position: relative;
    aspect-ratio: 16/10;
}

.journal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.journal-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.journal-tag {
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.journal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.journal-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.journal-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    transition: color 0.3s;
}

.journal-card:hover .journal-link {
    color: var(--accent-color);
}

/* Footer Styling */
.footer {
    background-color: #000;
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.footer-top {
    position: relative;
    margin-bottom: 60px;
}

.footer-work-marquee {
    padding: 10px 0 !important;
    height: 130px;
    display: flex;
    align-items: center;
}

.footer-work-marquee span {
    font-size: 5rem;
    font-weight: 950;
    color: var(--text-white);
    word-spacing: 8px;
    white-space: nowrap;
    line-height: 1;
}

.footer-contact-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.footer-center-btn {
    width: 110px;
    height: 110px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-weight: 800;
    font-size: 0.72rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.footer-center-btn:hover {
    transform: scale(1.1);
    background-color: var(--text-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.logo-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-white);
    text-decoration: none;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-brand-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-white);
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-address, .footer-phone {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background-color: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    color: var(--text-gray);
    font-size: 0.85rem;
}

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

.footer-bottom-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Animations and reveals */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Responsive Rules */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 6.5rem;
    }
    .about-headline {
        font-size: 2.2rem;
    }
    .testimonial-quote {
        font-size: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .header {
        padding: 0 30px;
    }
    .nav-container, .header-action {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero {
        padding: 0 40px 80px 40px;
    }
    .hero-title {
        font-size: 5rem;
    }
    .hero-bg-asset {
        width: 60%;
        top: 25%;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .testimonial-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .testimonial-img-box {
        margin: 0 auto;
    }
    .testimonial-navigation {
        position: static;
        margin-top: 30px;
        justify-content: center;
    }
    .contact-cta-btn {
        font-size: 4rem;
    }
    .journal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 0 20px 60px 20px;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-bg-asset {
        width: 80%;
        top: 30%;
    }
    .hero-top-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .service-name {
        font-size: 1.6rem;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .company-stats-grid {
        grid-template-columns: 1fr;
    }
    .contact-cta-btn {
        font-size: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}
