/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide default scrollbar */
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Prevent scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Show default cursor on mobile */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .container {
        padding: 0 15px;
    }
}

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

.highlight {
    color: rgb(247, 148, 29);
}

/* Remove underline from all links */
a {
    text-decoration: none !important;
}

a:hover,
a:focus,
a:active {
    text-decoration: none !important;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #f7941d, #ff6b00, #f7941d);
    background-size: 200% 100%;
    width: 0%;
    transition: width 0.1s ease-out;
    animation: gradientMove 2s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    width: 10px;
    height: 10px;
    background-color: #f7941d;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid #f7941d;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
    opacity: 0.5;
}

.cursor-hover {
    width: 60px;
    height: 60px;
    background-color: rgba(247, 148, 29, 0.2);
}

.cursor-follower.cursor-hover {
    width: 80px;
    height: 80px;
    border-color: #f7941d;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-brand a:hover .nav-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(247, 148, 29, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #f7941d;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #f7941d;
}

/* Hamburger Menu */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(247, 148, 29, 0.1) 0%,
        transparent 70%
    );
    animation: heroPulse 4s ease-in-out infinite;
}

@keyframes heroPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

.hero-content h1 {
    font-size: 100px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.hero-content p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

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

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch:hover::before {
    animation: glitch-1 0.3s linear infinite;
    color: #f7941d;
    z-index: -1;
    opacity: 0.8;
}

.glitch:hover::after {
    animation: glitch-2 0.3s linear infinite;
    color: #ff6b00;
    z-index: -2;
    opacity: 0.8;
}

@keyframes glitch-1 {
    0%,
    100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-3px, 3px);
    }
    40% {
        transform: translate(-3px, -3px);
    }
    60% {
        transform: translate(3px, 3px);
    }
    80% {
        transform: translate(3px, -3px);
    }
}

@keyframes glitch-2 {
    0%,
    100% {
        transform: translate(0);
    }
    20% {
        transform: translate(3px, -3px);
    }
    40% {
        transform: translate(3px, 3px);
    }
    60% {
        transform: translate(-3px, -3px);
    }
    80% {
        transform: translate(-3px, 3px);
    }
}

/* Mouse Scroll Indicator - Arrow */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.scroll-arrow {
    animation: arrowBounceDown 1.5s ease-in-out infinite;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-arrow svg {
    width: 48px;
    height: 48px;
}

@keyframes arrowBounceDown {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 150px 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #f7941d;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    line-height: 1.9;
}

.btn-primary {
    background-color: #f7941d;
    color: #000000;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: #ff6b00;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 148, 29, 0.4);
}

.about-image .image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.about-image .image-placeholder::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(247, 148, 29, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: imageShine 3s infinite;
}

@keyframes imageShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.about-image .image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(247, 148, 29, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.about-image .image-placeholder:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    border-radius: 20px;
    pointer-events: none;
}

/* ===== SOFTWARE SECTION ===== */
.software-section {
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.software-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.software-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f7941d, transparent);
}

.software-marquee {
    overflow: hidden;
    padding: 50px 0;
    position: relative;
}

.software-marquee::before,
.software-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.software-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #000000, transparent);
}

.software-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, #000000, transparent);
}

.software-track {
    display: flex;
    gap: 80px;
    animation: marquee var(--animation-duration, 30s) linear infinite;
    width: max-content;
    will-change: transform;
    padding: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 40px));
    }
}

.software-item {
    flex-shrink: 0;
}

.software-icon {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.software-icon::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.software-icon:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(247, 148, 29, 0.3);
}

.software-icon:hover::after {
    opacity: 1;
}

.software-icon.ai {
    background: linear-gradient(135deg, #330000 0%, #ff6600 100%);
    border: 2px solid #ff6600;
}

.software-icon.ae {
    background: linear-gradient(135deg, #00005a 0%, #9999ff 100%);
    border: 2px solid #9999ff;
}

.software-icon.ps {
    background: linear-gradient(135deg, #001e36 0%, #31a8ff 100%);
    border: 2px solid #31a8ff;
}

.software-icon.pr {
    background: linear-gradient(135deg, #00005a 0%, #9999ff 100%);
    border: 2px solid #ea77ff;
}

.software-icon.figma {
    background: linear-gradient(135deg, #1e1e1e 0%, #333 100%);
    border: 2px solid #0acf83;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 57'%3E%3Cpath fill='%23f24e1e' d='M19 28.5a9.5 9.5 0 1 1 19 0 9.5 9.5 0 0 1-19 0z'/%3E%3Cpath fill='%23ff7262' d='M0 47.5A9.5 9.5 0 0 1 9.5 38H19v9.5a9.5 9.5 0 1 1-19 0z'/%3E%3Cpath fill='%23a259ff' d='M19 0v19h9.5a9.5 9.5 0 1 0 0-19H19z'/%3E%3Cpath fill='%231abcfe' d='M0 9.5A9.5 9.5 0 0 0 9.5 19H19V0H9.5A9.5 9.5 0 0 0 0 9.5z'/%3E%3Cpath fill='%230acf83' d='M0 28.5A9.5 9.5 0 0 0 9.5 38H19V19H9.5A9.5 9.5 0 0 0 0 28.5z'/%3E%3C/svg%3E");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}

.software-icon.capcut {
    background: linear-gradient(135deg, #1e1e1e 0%, #333 100%);
    border: 2px solid #00d8a0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%2300d8a0'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
    padding: 150px 0;
    position: relative;
}

.experience-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.experience-title {
    align-self: center;
}

.experience-title h2 {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

/* Timeline Container */
.experience-timeline {
    position: relative;
    padding: 20px 0;
}

/* Vertical Timeline Line - Gradient from thick/bright to thin/faded */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        180deg,
        #f7941d 0%,
        #f7941d 20%,
        rgba(247, 148, 29, 0.6) 50%,
        rgba(247, 148, 29, 0.2) 80%,
        rgba(247, 148, 29, 0.05) 100%
    );
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 20px;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Left Side Items */
.timeline-left {
    margin-left: 0;
    margin-right: auto;
    text-align: right;
    padding-right: 25px;
    padding-left: 0;
}

/* Right Side Items */
.timeline-right {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 25px;
    padding-right: 0;
}

/* Timeline Dot - Hidden */
.timeline-dot {
    display: none;
}

/* Timeline Content */
.timeline-content {
    padding: 0;
    background: transparent;
}

/* Date styling */
.timeline-content .date {
    color: #f7941d;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

/* Title styling */
.timeline-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.timeline-content h4:hover {
    color: #f7941d;
}

/* Company styling */
.timeline-content .company {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-weight: 400;
}

/* List styling */
.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-left .timeline-content ul li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 6px;
    transition: color 0.3s ease;
    position: relative;
    padding-right: 15px;
}

.timeline-left .timeline-content ul li::after {
    content: "•";
    color: #f7941d;
    position: absolute;
    right: 0;
    font-weight: 700;
}

.timeline-left .timeline-content ul li:hover {
    color: #f7941d;
}

.timeline-right .timeline-content ul li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 6px;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.timeline-right .timeline-content ul li::before {
    content: "•";
    color: #f7941d;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.timeline-right .timeline-content ul li:hover {
    color: #f7941d;
}

/* Fade effect for older experiences */
.timeline-item:nth-child(3) .timeline-content {
    opacity: 0.9;
}

.timeline-item:nth-child(4) .timeline-content {
    opacity: 0.7;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 150px 0;
    text-align: left;
}

.services-section > .container > h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 70px;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 60px;
    max-width: 100%;
}

.service-card {
    background-color: transparent;
    padding: 30px 0;
    text-align: left;
    position: relative;
    transition: all 0.4s ease;
}

.service-icon {
    display: none;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f7941d;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f7941d;
    transition: width 0.4s ease;
}

.service-card:hover .service-hover-line {
    width: 100%;
}

.service-card:hover h3 {
    border-bottom-color: transparent;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.9;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

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

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    padding: 150px 0;
    text-align: left;
}

.projects-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(247, 148, 29, 0.3);
}

.project-image {
    background: linear-gradient(
        135deg,
        rgba(30, 30, 30, 1) 0%,
        rgba(20, 20, 20, 1) 100%
    );
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
    filter: brightness(0.3);
}

.project-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 3;
}

.project-card:hover .project-image::before {
    left: 100%;
}

.project-image h3 {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.project-card:hover .project-image h3 {
    opacity: 1;
    transform: translateY(0);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.view-project {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.projects-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-arrow {
    color: #ffffff;
    font-size: 28px;
    transition: all 0.3s ease;
    animation: arrowBounce 1.5s infinite;
}

@keyframes arrowBounce {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0a0a0a;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(247, 148, 29, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.footer-cta {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.footer-cta h3 {
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: #f7941d;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
}

.footer-cta h2 {
    font-size: 52px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.footer-cta h2:hover {
    color: #f7941d;
    text-shadow: 0 0 30px rgba(247, 148, 29, 0.5);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-logo .logo-icon {
    transition: all 0.4s ease;
}

.footer-logo .logo-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(247, 148, 29, 0.5));
}

.footer-logo-img {
    height: 80px;
    width: auto;
}

.footer-contact {
    text-align: center;
}

.footer-contact .location {
    font-size: 18px;
    color: #f7941d;
    font-weight: 500;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    background-color: rgba(247, 148, 29, 0.1);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background-color: rgba(247, 148, 29, 0.2);
    box-shadow: 0 10px 20px rgba(247, 148, 29, 0.3);
}

.social-icon svg {
    transition: all 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

.footer-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f7941d, transparent);
    margin-bottom: 40px;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #f7941d;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(247, 148, 29, 0.4);
    max-width: calc(100vw - 40px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #ff6b00;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(247, 148, 29, 0.6);
}

.scroll-to-top svg {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-3px);
}

/* ===== ABOUT ME PAGE ===== */
.about-hero-section {
    padding: 150px 0 60px;
    background-color: #000000;
}

.about-hero-section h1 {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero-divider {
    width: 100%;
    height: 2px;
    background-color: #f7941d;
    margin-top: 30px;
}

.about-main-section {
    padding: 80px 0;
    background-color: #000000;
}

.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-main-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #f7941d;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-main-text > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 30px;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #f7941d;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-outline:hover {
    background-color: #f7941d;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 148, 29, 0.4);
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 700;
    color: #f7941d;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.about-main-image {
    display: flex;
    justify-content: center;
}

/* Image Placeholder Box */
.image-placeholder-box {
    width: 100%;
    max-width: 400px;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px dashed rgba(247, 148, 29, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.image-placeholder-box:hover {
    border-color: rgba(247, 148, 29, 0.6);
    box-shadow: 0 20px 40px rgba(247, 148, 29, 0.1);
}

.about-main-image .image-wrapper {
    width: 100%;
    max-width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-main-image .image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-main-image .image-wrapper:hover img {
    transform: scale(1.05);
}

.about-services-section {
    padding: 100px 0;
    background-color: #000000;
}

/* Previous Clients Section */
.previous-clients-section {
    padding: 100px 0;
    background-color: #000000;
}

.previous-clients-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
    text-align: center;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.client-logo-item {
    aspect-ratio: 1 / 1;
    background-color: #f7941d;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.client-logo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(247, 148, 29, 0.3);
}

.client-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-logo-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f7941d;
}

/* Services Page Hero */
.services-hero-section {
    padding: 150px 0 60px;
    background-color: #000000;
}

.services-hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

/* Services Accordion Section */
.services-accordion-section {
    padding: 60px 0 100px;
    background-color: #000000;
}

.services-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 0;
    position: relative;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header-content {
    flex: 1;
    padding-right: 20px;
}

.accordion-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #f7941d;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.accordion-preview {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.accordion-item.active .accordion-preview {
    opacity: 0;
    max-height: 0;
    margin: 0;
    overflow: hidden;
}

.accordion-header:hover h3 {
    color: #ff6b00;
}

.accordion-icon {
    color: #f7941d;
    transition: transform 0.3s ease;
    margin-top: 5px;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

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

.accordion-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    padding-bottom: 30px;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.accordion-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.accordion-item:hover .accordion-line {
    background-color: rgba(247, 148, 29, 0.3);
}

.accordion-item.active .accordion-line {
    background-color: #f7941d;
}

.about-cta-section {
    padding: 100px 0;
    background-color: #000000;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
}

.btn-outline-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #f7941d;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-outline-cta .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-outline-cta:hover {
    background-color: #f7941d;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 148, 29, 0.4);
}

.btn-outline-cta:hover .arrow {
    transform: translateX(5px);
}

/* ===== PROJECTS PAGE ===== */
.projects-page-section {
    padding: 80px 0 120px;
    background-color: #000000;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    cursor: pointer;
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f7941d;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(247, 148, 29, 0.3);
}

.gallery-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
    text-decoration: none;
}

.gallery-item:hover h3 {
    color: #f7941d;
}

/* ===== PROJECT DETAIL PAGE ===== */
.project-detail-hero {
    padding: 150px 0 60px;
    background-color: #000000;
}

.project-detail-hero h1 {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

.project-detail-section {
    padding: 60px 0 120px;
    background-color: #000000;
}

.project-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 60px;
}

.project-detail-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.detail-item {
    cursor: pointer;
}

.detail-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f7941d;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-item:hover .detail-placeholder {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(247, 148, 29, 0.3);
}

/* Project List Layout (Brand Identity, Video, Motion) */
.project-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-list-item {
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.project-list-placeholder {
    width: 100%;
    aspect-ratio: 16 / 7;
    background-color: #f7941d;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-list-item:hover .project-list-placeholder {
    transform: scale(1.01);
    box-shadow: 0 20px 40px rgba(247, 148, 29, 0.3);
}

.project-list-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.project-list-item:hover h3 {
    color: #f7941d;
}

.project-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.load-more-wrapper {
    text-align: center;
    margin-top: 60px;
}

.btn-load-more {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #f7941d;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-load-more:hover {
    background-color: #f7941d;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 148, 29, 0.4);
}

/* Project Grid Layout (Logo Design, Additional) */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-grid-item {
    cursor: pointer;
}

.project-grid-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f7941d;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-grid-item:hover .project-grid-placeholder {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(247, 148, 29, 0.3);
}

.project-grid-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.project-grid-item:hover h3 {
    color: #f7941d;
}

.project-grid-item .project-date {
    font-size: 11px;
}

/* ===== PROJECT GRID EXPANDABLE (Slide Effect) ===== */
.project-expandable {
    cursor: pointer;
}

.project-grid-header {
    position: relative;
}

.project-expand-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
    padding: 0 5px;
}

.project-expandable.expanded .project-expand-content {
    max-height: 300px;
    opacity: 1;
    padding: 15px 5px 5px 5px;
}

.project-expand-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 10px;
}

.project-expand-client {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.project-expand-client span {
    color: #f7941d;
    font-weight: 500;
}

.project-expandable.expanded {
    transform: scale(1.02);
}

.project-expandable.expanded .project-grid-placeholder {
    border-color: rgba(247, 148, 29, 0.5);
}

/* ===== LOAD MORE HIDDEN ITEMS ===== */
.hidden-project {
    display: none !important;
}

/* ===== PROJECT ACCORDION STYLE ===== */
.project-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.project-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-accordion-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-accordion-header:hover {
    padding-left: 10px;
}

.project-accordion-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.project-accordion-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(247, 148, 29, 0.3) 0%,
        rgba(255, 107, 0, 0.2) 100%
    );
    flex-shrink: 0;
}

.project-accordion-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-accordion-title h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.project-accordion-header:hover .project-accordion-title h3 {
    color: #f7941d;
}

.project-accordion-title .project-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.project-accordion-icon {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.project-accordion-item.active .project-accordion-icon {
    transform: rotate(180deg);
    color: #f7941d;
}

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

.project-accordion-item.active .project-accordion-content {
    max-height: 500px;
    padding: 0 0 30px 100px;
}

.project-accordion-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 15px;
}

.project-accordion-client {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.project-accordion-client span {
    color: #f7941d;
    font-weight: 500;
}

/* ===== PROJECT GALLERY DETAIL PAGE ===== */
.project-gallery-hero {
    padding: 150px 0 40px;
    background-color: #000000;
}

.project-gallery-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.project-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.project-gallery-section {
    padding: 40px 0 80px;
    background-color: #000000;
}

.gallery-block {
    margin-bottom: 50px;
}

.gallery-block:last-child {
    margin-bottom: 0;
}

.gallery-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #f7941d;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-block:hover .gallery-image-placeholder {
    box-shadow: 0 20px 40px rgba(247, 148, 29, 0.2);
}

.gallery-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.gallery-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* Gallery Overview Section */
.gallery-overview {
    margin-bottom: 40px;
}

.gallery-overview .overview-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

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

.gallery-overview .overview-info {
    max-width: 700px;
}

.gallery-overview .overview-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.gallery-overview .overview-info p,
.gallery-overview .overview-info .project-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.gallery-overview .overview-info .project-description p {
    margin-bottom: 12px;
}

.gallery-overview .overview-info .project-description p:last-child {
    margin-bottom: 0;
}

/* Pinterest-style Masonry Gallery */
.masonry-gallery {
    margin-bottom: 60px;
}

.masonry-item {
    width: calc(25% - 6px);
    margin-bottom: 8px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.masonry-item:hover img {
    transform: scale(1.03);
}

/* Brand Points Section - Clean Style Without Background */
.brand-points-section {
    margin-top: 80px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    max-width: 700px;
}

.brand-point-item {
    margin-bottom: 60px;
    padding: 0;
}

.brand-point-item:last-child {
    margin-bottom: 0;
}

.brand-point-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: none;
}

.brand-point-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-weight: 400;
}

/* Project Navigation */
.project-navigation {
    padding: 40px 0 80px;
    background-color: #000000;
}

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

.nav-prev,
.nav-next {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-prev:hover,
.nav-next:hover {
    color: #f7941d;
}

.nav-prev .arrow,
.nav-next .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.nav-prev:hover .arrow {
    transform: translateX(-5px);
}

.nav-next:hover .arrow {
    transform: translateX(5px);
}

/* ===== CONTACT PAGE ===== */
.contact-hero-section {
    padding: 150px 0 60px;
    background-color: #000000;
}

.contact-hero-section h1 {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

.contact-form-section {
    padding: 60px 0 100px;
    background-color: #000000;
}

.contact-tagline {
    font-size: 32px;
    font-weight: 700;
    color: #f7941d;
    text-align: center;
    margin-bottom: 60px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 35px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    padding: 10px 0;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: none;
    min-height: 100px;
}

.form-line {
    width: 100%;
    height: 1px;
    background-color: rgba(247, 148, 29);
    transition: all 0.3s ease;
}

.form-group:focus-within .form-line {
    background-color: #f7941d;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.char-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.btn-send {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #f7941d;
    color: #000000;
    border: none;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-send .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-send:hover {
    background-color: #ff6b00;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 148, 29, 0.4);
}

.btn-send:hover .arrow {
    transform: translateX(5px);
}

.contact-info-section {
    padding: 0 0 100px;
    background-color: #000000;
}

.contact-info-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center top,
        rgba(247, 148, 29, 0.15) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.contact-cta-text {
    font-size: 16px;
    color: #f7941d;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.contact-email {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #f7941d;
}

.contact-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.brand-logo {
    width: 60px;
    height: 60px;
}

.brand-logo svg {
    width: 100%;
    height: 100%;
}

.brand-info {
    text-align: left;
}

.brand-info .location {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-info-card .social-icons {
    justify-content: flex-start;
    gap: 10px;
}

.contact-info-card .social-icon {
    width: 32px;
    height: 32px;
    background-color: transparent;
}

.contact-info-card .social-icon:hover {
    background-color: rgba(247, 148, 29, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 70px;
    }

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

@media (max-width: 768px) {
    /* Mobile Navbar */
    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 24px;
        font-weight: 600;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .software-track {
        gap: 50px;
    }

    .software-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .experience-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-header h2 {
        font-size: 38px;
    }

    .experience-timeline-container {
        padding: 0 20px;
    }

    .timeline-line {
        left: 20px;
    }

    .experience-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-left: 40px;
    }

    .experience-item.item-left,
    .experience-item.item-right {
        text-align: left;
    }

    .experience-item.item-left .exp-content,
    .experience-item.item-right .exp-content {
        order: 1;
    }

    .experience-item.item-left .exp-details,
    .experience-item.item-right .exp-details {
        order: 2;
        text-align: left;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }

    .experience-item.item-left .timeline-dot,
    .experience-item.item-right .timeline-dot {
        left: 20px;
        right: auto;
    }

    .exp-role {
        font-size: 20px;
    }

    .exp-company {
        font-size: 16px;
    }

    .exp-year {
        font-size: 14px;
    }

    .exp-description li {
        font-size: 13px;
    }

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

    /* ===== Experience Section Mobile ===== */
    .experience-section {
        padding: 80px 0;
    }

    .experience-title h2 {
        font-size: 36px;
        text-align: center;
        margin-bottom: 20px;
    }

    .experience-timeline {
        padding-left: 30px;
        position: relative;
    }

    /* Timeline line on the left */
    .experience-timeline .timeline-line {
        left: 0;
        transform: none;
        width: 2px;
    }

    /* All timeline items - single column */
    .timeline-item {
        width: 100%;
        padding-left: 25px;
        padding-right: 0;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .timeline-item.timeline-left,
    .timeline-item.timeline-right {
        width: 100%;
        padding-left: 25px;
        padding-right: 0;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    /* Timeline dot position on left */
    .timeline-item::before {
        content: "";
        position: absolute;
        left: -6px;
        top: 5px;
        width: 10px;
        height: 10px;
        background: #f7941d;
        border-radius: 50%;
        border: 2px solid #000;
    }

    /* List items aligned left */
    .timeline-left .timeline-content ul li,
    .timeline-right .timeline-content ul li {
        text-align: left;
        padding-left: 15px;
        padding-right: 0;
    }

    .timeline-left .timeline-content ul li::after {
        display: none;
    }

    .timeline-left .timeline-content ul li::before,
    .timeline-right .timeline-content ul li::before {
        content: "•";
        color: #f7941d;
        position: absolute;
        left: 0;
        font-weight: 700;
    }

    .timeline-content h4 {
        font-size: 18px;
    }

    .timeline-content .company {
        font-size: 14px;
    }

    .timeline-content .date {
        font-size: 10px;
    }

    .timeline-content ul li {
        font-size: 13px;
    }

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

    .project-image {
        height: 280px;
    }

    .footer-cta {
        margin-bottom: 50px;
        padding: 0 10px;
    }

    .footer-cta h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-cta h2 {
        font-size: 28px;
        line-height: 1.3;
        word-wrap: break-word;
        word-break: break-all;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-contact {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    /* About Me Page Responsive */
    .about-hero-section h1 {
        font-size: 42px;
    }

    .about-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-main-text h2 {
        font-size: 32px;
    }

    .about-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .about-main-image {
        order: -1;
    }

    .about-main-image .image-wrapper {
        max-width: 300px;
        height: 400px;
    }

    /* Previous Clients Responsive */
    .previous-clients-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .client-logo-item {
        border-radius: 12px;
    }

    /* Services Accordion Responsive */
    .services-hero-section h1 {
        font-size: 36px;
    }

    .accordion-header {
        padding: 30px 0;
    }

    .accordion-header h3 {
        font-size: 22px;
    }

    .accordion-content p {
        font-size: 14px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    /* Projects Gallery Responsive */
    .projects-gallery {
        gap: 20px;
    }

    .gallery-item h3 {
        font-size: 14px;
    }

    /* Project Detail Responsive */
    .project-detail-hero h1 {
        font-size: 42px;
    }

    .project-detail-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .project-description {
        font-size: 14px;
    }

    .project-list {
        max-width: 100%;
    }

    .project-list-placeholder {
        aspect-ratio: 4 / 3;
    }

    /* Contact Page Responsive */
    .contact-hero-section h1 {
        font-size: 42px;
    }

    .contact-tagline {
        font-size: 24px;
    }

    .contact-email {
        font-size: 24px;
    }

    .contact-info-card {
        padding: 40px 30px;
    }

    .contact-brand {
        flex-direction: column;
        text-align: center;
    }

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

    .contact-info-card .social-icons {
        justify-content: center;
    }

    /* Project Gallery Detail Responsive */
    .project-gallery-hero h1 {
        font-size: 32px;
    }

    .gallery-info h3 {
        font-size: 16px;
    }

    .gallery-info p {
        font-size: 12px;
    }

    /* Masonry Gallery Responsive - 2 columns on tablet */
    .masonry-gallery {
        column-count: 2;
        column-gap: 10px;
    }

    .masonry-item {
        margin-bottom: 10px;
    }

    .gallery-overview .overview-info h3 {
        font-size: 16px;
    }

    .gallery-overview .overview-info p {
        font-size: 12px;
    }

    /* Masonry Gallery Responsive - 2 columns on tablet */
    .masonry-item {
        width: calc(50% - 4px);
        margin-bottom: 6px;
        border-radius: 8px;
    }

    /* Brand Points Responsive */
    .brand-point-item h3 {
        font-size: 20px;
    }

    .brand-point-item p {
        font-size: 15px;
    }

    .nav-prev span:not(.arrow),
    .nav-next span:not(.arrow) {
        font-size: 12px;
    }

    .image-placeholder-box {
        max-width: 300px;
        height: 400px;
    }

    /* Project Grid Responsive */
    .project-grid {
        gap: 20px;
    }

    .project-grid-item h3 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    /* Hamburger menu tetap aktif */
    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 20px;
        font-weight: 600;
    }

    /* Footer Mobile */
    .footer-cta {
        margin-bottom: 40px;
        padding: 0 5px;
    }

    .footer-cta h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-cta h2 {
        font-size: 20px;
        line-height: 1.4;
        word-wrap: break-word;
        word-break: break-all;
    }

    .footer-logo-img {
        height: 40px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .footer-copyright p {
        font-size: 13px;
    }

    .services-section > .container > h2,
    .projects-section h2 {
        font-size: 32px;
    }

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

    .projects-gallery {
        grid-template-columns: 1fr;
    }

    /* Previous Clients Mobile */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .previous-clients-section h2 {
        font-size: 28px;
    }

    /* Services Accordion Mobile */
    .services-hero-section h1 {
        font-size: 28px;
    }

    .accordion-header h3 {
        font-size: 18px;
    }

    .accordion-header {
        padding: 25px 0;
    }

    /* Project Accordion Mobile */
    .project-accordion-thumbnail {
        width: 60px;
        height: 60px;
    }

    .project-accordion-info {
        gap: 15px;
    }

    .project-accordion-title h3 {
        font-size: 16px;
    }

    .project-accordion-title .project-date {
        font-size: 12px;
    }

    .project-accordion-content {
        padding: 0 0 0 75px;
    }

    .project-accordion-item.active .project-accordion-content {
        padding: 0 0 25px 75px;
    }

    .project-accordion-desc {
        font-size: 14px;
    }

    /* Masonry Gallery - 2 columns on Mobile */
    .masonry-item {
        width: calc(50% - 3px);
        margin-bottom: 5px;
        border-radius: 6px;
    }

    /* Brand Points Mobile */
    .brand-points-section {
        margin-top: 50px;
        padding: 0;
    }

    .brand-point-item {
        margin-bottom: 40px;
    }

    .brand-point-item h3 {
        font-size: 20px;
    }

    .brand-point-item p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* ===== ULTRA SMALL MOBILE (320px - 425px) ===== */
@media (max-width: 425px) {
    .container {
        padding: 0 12px;
    }

    /* Ensure hamburger is always visible */
    .nav-hamburger {
        display: flex !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
        display: flex !important;
    }

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

    .hamburger-line {
        width: 22px;
        height: 2px;
    }

    .nav-logo {
        height: 35px;
    }

    /* Footer Ultra Small Mobile */
    .footer-cta h2 {
        font-size: 16px;
        line-height: 1.5;
    }

    .footer-cta h3 {
        font-size: 14px;
    }
}

/* ===== ADDITIONAL DYNAMIC CONTENT STYLES ===== */

/* Software icon with image */
.software-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

/* Gallery placeholder with image */
.gallery-placeholder {
    position: relative;
    overflow: hidden;
}

.gallery-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-placeholder img {
    transform: scale(1.05);
}

/* Project list placeholder with image */
.project-list-placeholder {
    position: relative;
    overflow: hidden;
}

.project-list-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-list-item:hover .project-list-placeholder img {
    transform: scale(1.02);
}

/* Project grid placeholder with image */
.project-grid-placeholder {
    position: relative;
    overflow: hidden;
}

.project-grid-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-grid-item:hover .project-grid-placeholder img {
    transform: scale(1.05);
}

/* Gallery image placeholder with image */
.gallery-image-placeholder {
    position: relative;
    overflow: hidden;
}

.gallery-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video placeholder with play button */
.video-placeholder {
    position: relative;
}

.video-placeholder .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    text-decoration: none;
}

.video-placeholder .play-button:hover {
    background-color: rgba(247, 148, 29, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-placeholder .play-button svg {
    margin-left: 5px;
    transition: fill 0.3s ease;
}

.video-placeholder .play-button:hover svg {
    fill: #000000;
}

/* No projects message */
.no-projects {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-projects p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.no-content {
    text-align: center;
    padding: 40px 20px;
}

.no-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Brand Points List (for old format if needed) */
.brand-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-points-list li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.brand-points-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f7941d;
}

.brand-points-list li strong {
    display: block;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 8px;
}

.brand-points-list li p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Project count in gallery */
.project-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

/* Project description in list */
.project-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-top: 10px;
}

/* Navigation disabled state */
.nav-prev.disabled,
.nav-next.disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: not-allowed;
}

/* Contact page alerts */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.alert-error ul {
    margin: 0;
    padding-left: 20px;
}

.alert-error ul li {
    margin-bottom: 5px;
}

.alert-error ul li:last-child {
    margin-bottom: 0;
}

/* Contact info section grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #f7941d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-info-item a,
.contact-info-item p {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #f7941d;
}

/* Footer email link */
.footer-cta h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-cta h2 a:hover {
    color: #ff6b00;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    background: #111111;
    border-radius: 16px;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.video-modal.active .video-modal-content {
    transform: translateY(0);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: #f7941d;
    transform: rotate(90deg);
}

.video-modal-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #000000;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.video-modal-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-info {
    padding: 30px;
}

.video-modal-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.video-modal-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.video-modal-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.video-modal-client {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.video-modal-client span:first-child {
    color: #f7941d;
    font-weight: 500;
}

/* Play button overlay for video items */
.project-video-item {
    cursor: pointer;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.project-video-item:hover .play-button-overlay {
    background: rgba(247, 148, 29, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay svg {
    transition: transform 0.3s ease;
}

.project-video-item:hover .play-button-overlay svg {
    fill: #ffffff;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .video-modal-info {
        padding: 20px;
    }

    .video-modal-info h2 {
        font-size: 20px;
    }

    .video-modal-desc {
        font-size: 14px;
    }

    .play-button-overlay {
        width: 60px;
        height: 60px;
    }

    .play-button-overlay svg {
        width: 36px;
        height: 36px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-placeholder .play-button {
        width: 60px;
        height: 60px;
    }

    .video-placeholder .play-button svg {
        width: 36px;
        height: 36px;
    }
}

/* ===== RICH TEXT CONTENT STYLING ===== */
/* Styling for HTML content from Quill editor */
.detail-text h1,
.detail-text h2,
.detail-text h3,
.overview-info h1,
.overview-info h2,
.overview-info h3,
.project-expand-desc h1,
.project-expand-desc h2,
.project-expand-desc h3,
.video-modal-desc h1,
.video-modal-desc h2,
.video-modal-desc h3 {
    color: #f7941d;
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.detail-text h1,
.overview-info h1,
.project-expand-desc h1,
.video-modal-desc h1 {
    font-size: 1.8em;
}

.detail-text h2,
.overview-info h2,
.project-expand-desc h2,
.video-modal-desc h2 {
    font-size: 1.5em;
}

.detail-text h3,
.overview-info h3,
.project-expand-desc h3,
.video-modal-desc h3 {
    font-size: 1.2em;
}

.detail-text strong,
.overview-info strong,
.project-expand-desc strong,
.video-modal-desc strong {
    font-weight: 600;
    color: #fff;
}

.detail-text em,
.overview-info em,
.project-expand-desc em,
.video-modal-desc em {
    font-style: italic;
}

.detail-text u,
.overview-info u,
.project-expand-desc u,
.video-modal-desc u {
    text-decoration: underline;
}

.detail-text s,
.overview-info s,
.project-expand-desc s,
.video-modal-desc s {
    text-decoration: line-through;
}

.detail-text ul,
.detail-text ol,
.overview-info ul,
.overview-info ol,
.project-expand-desc ul,
.project-expand-desc ol,
.video-modal-desc ul,
.video-modal-desc ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.detail-text li,
.overview-info li,
.project-expand-desc li,
.video-modal-desc li {
    margin-bottom: 0.5em;
}

.detail-text p,
.overview-info > div > p,
.project-expand-desc > p,
.video-modal-desc > p {
    margin-bottom: 1em;
}

.detail-text a,
.overview-info a,
.project-expand-desc a,
.video-modal-desc a {
    color: #f7941d;
    text-decoration: underline;
}

.detail-text a:hover,
.overview-info a:hover,
.project-expand-desc a:hover,
.video-modal-desc a:hover {
    color: #ff9d3d;
}

/* Text alignment */
.detail-text .ql-align-center,
.overview-info .ql-align-center,
.project-expand-desc .ql-align-center,
.video-modal-desc .ql-align-center {
    text-align: center;
}

.detail-text .ql-align-right,
.overview-info .ql-align-right,
.project-expand-desc .ql-align-right,
.video-modal-desc .ql-align-right {
    text-align: right;
}

.detail-text .ql-align-justify,
.overview-info .ql-align-justify,
.project-expand-desc .ql-align-justify,
.video-modal-desc .ql-align-justify {
    text-align: justify;
}
