/* 
   GMR Tech - Data Luminosity Theme
   Redesign focused on high-tech consultacy aesthetic.
*/

:root {
    /* Color Palette - Data Luminosity */
    --bg-dark: #020b16;
    --bg-void: #050a14;
    --bg-panel: rgba(11, 18, 33, 0.7);
    --primary: #FFD700;
    /* Gold/Yellow */
    --secondary: #FFC107;
    /* Amber/Yellow */
    --accent: #B8860B;
    /* Dark Goldenrod */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --success: #2ecc71;
    --error: #e74c3c;

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --header-height: 90px;
    --container-width: 1300px;
    --section-padding: 100px 0;

    /* Effects */
    --glass: blur(12px) saturate(180%);
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 20px rgba(0, 240, 255, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --header-height: 70px;
    }
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography Enhancements */
h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Utility Classes */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    background: linear-gradient(to right, var(--white), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.05);
    box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.2);
}

/* Header & Nav */
/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary);
    width: 0%;
    z-index: 2000;
    transition: width 0.1s linear;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: var(--border);
    background: rgba(2, 11, 22, 0.95);
    -webkit-backdrop-filter: var(--glass);
    backdrop-filter: var(--glass);
}

header.scrolled {
    background: rgba(2, 11, 22, 0.85);
    -webkit-backdrop-filter: var(--glass);
    backdrop-filter: var(--glass);
    height: 75px;
    border-bottom: var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header .container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    display: none;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

header.scrolled .logo-img {
    height: 40px;
}

.logo span {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.4rem;
    margin-left: 12px;
}

.nav-links {
    display: flex;
    gap: 40px;
    margin-left: auto;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section - Typographic Brutalism */
#home {
    height: calc(100vh - var(--header-height));
    margin-top: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(10, 40, 80, 0.4) 0%, var(--bg-dark) 80%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 0 20px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

#home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--bg-dark) 0%, transparent 60%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--white);
}

.hero-title span {
    display: block;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.4;
}

/* About Section */
#about {
    padding: var(--section-padding);
    background-image: radial-gradient(circle at 10% 20%, rgba(67, 97, 238, 0.05) 0%, transparent 40%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-item {
    background: var(--bg-panel);
    border: var(--border);
    padding: 40px 30px;
    border-radius: 8px;
    -webkit-backdrop-filter: var(--glass);
    backdrop-filter: var(--glass);
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.stat-number {
    font-size: 3rem;
    display: block;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Services Section */
#services {
    padding: var(--section-padding);
}

.services-wrapper {
    overflow: hidden;
    width: 100%;
}

.services-grid {
    display: flex;
    gap: 32px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.service-card {
    min-width: calc(33.333% - 22px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 8px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

@media (max-width: 1024px) {
    .service-card { min-width: calc(50% - 16px); }
}

@media (max-width: 600px) {
    .service-card { min-width: 100%; }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.service-btn {
    position: relative;
    z-index: 2;
    margin-top: auto;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.service-btn i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.service-btn:hover {
    color: var(--white);
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Methodology */
#methodology {
    padding: var(--section-padding);
}

/* Methodology Carousel */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
}

.process-steps-wrapper {
    overflow: hidden;
    width: 100%;
}

.process-steps {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.step {
    min-width: calc(33.333% - 20px);
    text-align: center;
    background: var(--bg-panel);
    border: var(--border);
    padding: 50px 30px;
    border-radius: 12px;
    transition: var(--transition);
}

.carousel-btn {
    background: var(--bg-panel);
    border: var(--border);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    flex-shrink: 0;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .step { min-width: calc(50% - 15px); }
}

@media (max-width: 600px) {
    .step { min-width: 100%; }
    .carousel-container { padding: 0 10px; }
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(255, 215, 0, 0.2);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
    .carousel-btn.prev { left: 0px; position: absolute; }
    .carousel-btn.next { right: 0px; position: absolute; }
    
    .step {
        padding: 35px 20px;
    }
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-dark);
    border: 2px solid var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 30px;
    box-shadow: 0 0 30px rgba(67, 97, 238, 0.2);
}

.step:hover .step-number {
    background: var(--secondary);
    box-shadow: 0 0 50px rgba(67, 97, 238, 0.4);
}

/* Technologies */
#technologies {
    padding: var(--section-padding);
    background: #000;
}

/* Technologies Infinite Slider */
.tech-slider-wrapper {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    width: 100%;
}

.tech-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollTech 30s linear infinite;
}

.tech-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTech {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tech-item {
    min-width: 180px;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border);
    padding: 30px 20px;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--text-muted);
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.tech-item:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

/* About Owner */
#about-owner {
    padding: var(--section-padding);
    background: var(--bg-void);
}

.owner-img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.curriculum-list {
    margin-top: 20px;
}

.curriculum-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-muted);
}

.curriculum-list i {
    color: var(--primary);
}

/* Portfolio */
#portfolio {
    padding: var(--section-padding);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.portfolio-img-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #0a1120, #1a233a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
}

.portfolio-info {
    padding: 30px;
    background: linear-gradient(to bottom, transparent, rgba(2, 11, 22, 0.5));
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--white);
}

.portfolio-info p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    background: rgba(255, 215, 0, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-img-placeholder {
        height: 200px;
    }
    .portfolio-info {
        padding: 20px;
    }
    .portfolio-info h3 {
        font-size: 1.3rem;
    }
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Blog */
#blog {
    padding: var(--section-padding);
    background: var(--bg-void);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.blog-date {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-card h3 {
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.read-more {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.blog-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Contact Section */
#contact {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #010409 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    background: var(--bg-panel);
    padding: 40px;
    border: var(--border);
    border-radius: 12px;
    height: 100%;
}

.contact-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-card > p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-links-contact a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links-contact a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.contact-form-box {
    background: var(--bg-panel);
    padding: 40px;
    border: var(--border);
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border);
    color: var(--white);
    padding: 12px 15px;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    font-size: 1rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding: 80px 0;
    border-bottom: var(--border);
}

footer {
    background: #010409;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Responsive */
@media (max-width: 992px) {

    .about-grid,
    .diff-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

/* --- Differentiators Redesign --- */
#differentiators {
    padding: var(--section-padding);
    background: radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.diff-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.diff-content h2 {
    font-size: 3.2rem;
    margin-bottom: 40px;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.diff-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
}

.diff-list li {
    list-style: none;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border);
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    -webkit-backdrop-filter: var(--glass);
    backdrop-filter: var(--glass);
}

.diff-list li:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateX(10px) scale(1.02);
    box-shadow: -10px 0 30px rgba(255, 215, 0, 0.1);
}

.diff-list li i {
    font-size: 1.5rem;
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.diff-placeholder-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.diff-placeholder-img::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px dashed rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: spin 60s linear infinite;
}

.diff-placeholder-img i {
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.8;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 992px) {
    .diff-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .diff-list li {
        justify-content: center;
        text-align: left;
        padding: 20px;
        font-size: 1rem;
    }
    
    .diff-content h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .diff-placeholder-img i {
        font-size: 6rem;
    }
}

@media (max-width: 480px) {
    .diff-list li i {
        font-size: 1.2rem;
    }
    .diff-list li {
        gap: 15px;
    }
}


@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    header .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: var(--transition);
        background-color: var(--white);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        justify-content: center;
        z-index: 1000;
        -webkit-backdrop-filter: var(--glass);
        backdrop-filter: var(--glass);
    }

    .nav-links.open {
        left: 0;
    }

    .nav-links li {
        margin: 16px 0;
    }

    .hamburger.toggle .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.toggle .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Missing Utility Classes */
.about-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-tag {
    margin: 0;
    text-align: left;
    color: var(--primary);
}

.about-btn {
    margin-top: 20px;
}

.contact-title {
    text-align: left;
}

/* --- About Owner Section --- */
#about-owner {
    padding: var(--section-padding);
}

.owner-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.placeholder-owner-box {
    width: 100%;
    height: 450px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-owner-box i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.curriculum h4 {
    color: var(--primary);
    margin: 30px 0 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.curriculum-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.curriculum-list li i {
    color: var(--primary);
}

/* --- Company Section --- */
#company {
    padding: var(--section-padding);
    background: var(--bg-void);
}

.company-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.company-text-box p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-title.company-title {
    text-align: center;
}

.about-title.company-title .about-tag {
    text-align: center;
}

/* --- Twinkling Stars Background --- */
#stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle-anim 3s infinite ease-in-out;
}

@keyframes twinkle-anim {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}