/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;600;700&display=swap');

/* ===== GLOBAL STYLES ===== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Inter', 'Unbounded', 'Arial', sans-serif;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: black;
    color: rgb(255, 255, 255);
    padding: 40px 0;
    position: relative;
    margin: 0;
}

/* Background Video */
.background-video {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    z-index: -1;
    opacity: 0.9;
    pointer-events: none;
    border: none;
    overflow: hidden;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 999px;
    width: fit-content;
    max-width: 90%;
    
    /* Refractive Glass Effect */
    background: rgba(15, 15, 20, 0.35);
    backdrop-filter: blur(16px) brightness(1.1);
    -webkit-backdrop-filter: blur(16px) brightness(1.1);
    
    /* Enhanced border for lens effect */
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    
    /* Deep shadow for depth */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(100, 200, 255, 0.1);
    
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(15, 15, 20, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(100, 200, 255, 0.15);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
}

.navbar a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(100, 200, 255, 0.8), rgba(150, 200, 255, 0.6));
    transition: width 0.3s ease;
}

.navbar a:hover {
    color: rgb(150, 200, 255);
    text-shadow: 0 0 10px rgba(100, 200, 255, 0.5);
}

.navbar a:hover::before {
    width: 100%;
}

.navbar a.active {
    color: rgb(150, 200, 255);
    text-shadow: 0 0 15px rgba(100, 200, 255, 0.6);
}

.navbar a.active::before {
    width: 100%;
    background: linear-gradient(90deg, rgba(100, 200, 255, 1), rgba(180, 150, 255, 0.8));
}

/* ===== Hero Section ===== */
section {
    scroll-margin-top: 100px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 40px;
}

.hero-content {
    max-width: 1000px;
    z-index: 10;
    padding: 60px 70px;
    border-radius: 30px;
    position: relative;
    
    /* Refractive Glass Effect - Less blur, more refraction */
    background: linear-gradient(135deg, rgba(10, 15, 25, 0.2), rgba(20, 30, 50, 0.15));
    backdrop-filter: blur(8px) saturate(1.4) brightness(1.1);
    -webkit-backdrop-filter: blur(8px) saturate(1.4) brightness(1.1);
    
    border: 1.5px solid transparent;
    
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(100, 200, 255, 0.06),
        0 0 100px rgba(255, 100, 150, 0.03);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 120, 180, 0.4), rgba(100, 200, 255, 0.5), rgba(120, 255, 200, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.greeting {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.2;
    font-weight: 300;
    color: rgb(255, 255, 255);
    margin-bottom: 30px;
}

.hero-title span {
    font-weight: 600;
    background: linear-gradient(135deg, rgba(100, 200, 255, 1), rgba(150, 200, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span.italic {
    font-style: italic;
    font-weight: 400;
}

/* ===== Projects Section ===== */
.projects {
    min-height: auto;
    padding: 100px 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.projects h2 {
    font-size: 3.5rem;
    margin-bottom: 60px;
    font-weight: 600;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(255, 255, 255, 0.05) !important;
}

.project-card {
    padding: 20px;
    border-radius: 16px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.2);
    height: 180px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) scale(1.02);
}

.project-card-header {
    font-size: 1.7rem;
    font-weight: 600;
    color: rgb(255, 255, 255);
}

.project-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    line-height: 1.4;
    flex: 1;
}

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

.tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* ===== NEW About Section - Bento Grid ===== */
.about-new {
    min-height: auto;
    padding: 80px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-new-container {
    max-width: 1200px;
    width: 100%;
}

.about-new-header {
    margin-bottom: 40px;
}

.about-label {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    display: block;
    margin-bottom: 15px;
}

.about-new-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 5rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}

.highlight-bubble {
    display: inline-block;
    background: #c8ff00;
    color: #000;
    padding: 5px 20px;
    border-radius: 999px;
    font-weight: 600;
}

.pink-star {
    color: #ff6b9d;
    font-size: 3rem;
    margin-left: 5px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Bento Grid */
.about-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Terminal Card */
.terminal-card {
    background: linear-gradient(145deg, #1e1e2e, #181825);
    grid-row: span 1;
    min-height: 320px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    animation: cardSlideIn 0.8s ease-out;
}

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

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.terminal-title {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.terminal-body {
    padding: 20px;
    flex: 1;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-size: 1.3rem;
    line-height: 1.8;
}

.code-line {
    animation: typeIn 0.5s ease-out backwards;
}

.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.3s; }
.code-line:nth-child(4) { animation-delay: 0.4s; }
.code-line:nth-child(5) { animation-delay: 0.5s; }
.code-line:nth-child(6) { animation-delay: 0.6s; }
.code-line:nth-child(7) { animation-delay: 0.7s; }
.code-line:nth-child(8) { animation-delay: 0.8s; }

@keyframes typeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.code-line.indent {
    padding-left: 20px;
}

.code-keyword { color: #c678dd; }
.code-var { color: #61afef; }
.code-prop { color: #e06c75; }
.code-string { color: #98c379; }
.code-bool { color: #d19a66; }
.code-comment { color: #5c6370; font-style: italic; }

.cursor {
    color: #61afef;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Skills Card */
.skills-card {
    background: rgba(20, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    grid-column: span 2;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    height: 100%;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border-radius: 16px;
    min-height: 100px;
    animation: skillPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) backwards;
    animation-delay: var(--delay, 0s);
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(183, 75, 75, 0.3), 
        transparent, 
        rgba(183, 75, 75, 0.5),
        transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Shimmer effect */
.project-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.6s ease;
}

.skill-item:hover::before {
    transform: rotate(45deg) translateY(-100%);
}

.skill-item:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes skillPop {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.skill-item svg {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.skill-item:hover svg {
    transform: scale(1.2) rotate(-5deg);
}

.skill-item span {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    transition: transform 0.3s ease;
}

.skill-item:hover span {
    transform: translateY(2px);
}

/* Skill Colors */
.skill-html {
    background: linear-gradient(135deg, #e34c26, #f06529);
    color: #fff;
    transition: all 0.3s ease;
}

.skill-css {
    background: linear-gradient(135deg, #264de4, #2965f1);
    color: #fff;
    transition: all 0.3s ease;
}

.skill-js {
    background: linear-gradient(135deg, #f7df1e, #d4c40e);
    color: #000;
    transition: all 0.3s ease;
}
.skill-js span { color: #000; }

.skill-react {
    background: linear-gradient(135deg, #1a1a2e, #20232a);
    color: #61dafb;
    border: 1px solid rgba(97, 218, 251, 0.3);
    transition: all 0.3s ease;
}

.skill-react:hover {
    border-color: rgba(97, 218, 251, 0.8);
    box-shadow: 0 0 30px rgba(97, 218, 251, 0.3);
}

.skill-supabase {
    background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
    color: #3ecf8e;
    border: 1px solid rgba(62, 207, 142, 0.3);
    transition: all 0.3s ease;
}

.skill-supabase:hover {
    border-color: rgba(62, 207, 142, 0.8);
    box-shadow: 0 0 30px rgba(62, 207, 142, 0.3);
}

.skill-firebase {
    background: linear-gradient(135deg, #1a1a2e, #2d1f00);
    color: #ffca28;
    border: 1px solid rgba(255, 202, 40, 0.3);
    transition: all 0.3s ease;
}

.skill-firebase:hover {
    border-color: rgba(255, 202, 40, 0.8);
    box-shadow: 0 0 30px rgba(255, 202, 40, 0.3);
}

/* Devotion Card */
.devotion-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 200, 100, 0.2);
    min-height: 280px;
}

.devotion-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.devotion-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ffaa00, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 200, 100, 0.3);
}

.peacock-feather {
    width: 100%;
    max-width: 150px;
    height: auto;
}

.feather-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(100, 200, 150, 0.3));
    animation: gentle-sway 4s ease-in-out infinite;
}

@keyframes gentle-sway {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

/* Experience Card */
.experience-card {
    background: linear-gradient(135deg, #ffe4e1, #ffd1dc);
    padding: 30px;
    grid-column: span 2;
    color: #333;
}

.experience-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #cc3366;
    margin-bottom: 25px;
    line-height: 1.4;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.experience-item {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.experience-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.exp-company {
    font-weight: 600;
    font-size: 1.5rem;
    color: #222;
}

.exp-date {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.5);
    margin-left: 10px;
}

.exp-role {
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 5px;
}

/* Responsive Bento Grid */
@media (max-width: 1024px) {
    .about-bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .skills-card {
        grid-column: span 2;
    }
    
    .experience-card {
        grid-column: span 2;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-new-title {
        font-size: 3.5rem;
    }
    
    .about-bento-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-card,
    .experience-card {
        grid-column: span 1;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects {
        padding: 60px 20px 40px;
    }
    
    .projects h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
}

/* ===== Contact Section ===== */
.contact {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-container {
    position: relative;
    padding: 80px 100px;
    border-radius: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* Refractive Glass Effect */
    background: linear-gradient(135deg, rgba(10, 15, 25, 0.2), rgba(20, 30, 50, 0.15));
    backdrop-filter: blur(8px) saturate(1.4) brightness(1.1);
    -webkit-backdrop-filter: blur(8px) saturate(1.4) brightness(1.1);
    
    border: 1.5px solid transparent;
    
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.25),
        0 0 80px rgba(100, 200, 255, 0.08),
        0 0 120px rgba(255, 100, 150, 0.05);
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 120, 180, 0.4), rgba(100, 200, 255, 0.5), rgba(120, 255, 200, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.contact-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 200, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.section-tag {
    font-size: 1.2rem;
    color: rgba(100, 200, 255, 0.8);
    font-weight: 500;
    letter-spacing: 2px;
    font-family: monospace;
}

.contact .section-tag {
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.contact-title {
    font-size: 6rem;
    font-weight: 300;
    margin: 20px 0 30px;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
}

.contact-title span {
    font-weight: 700;
    background: linear-gradient(135deg, rgba(100, 200, 255, 1), rgba(180, 220, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
}

.contact-cta {
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: rgba(100, 200, 255, 0.1);
    border: 2px solid rgba(100, 200, 255, 0.6);
    border-radius: 60px;
    color: rgba(100, 200, 255, 1);
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 200, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: rgba(100, 200, 255, 0.2);
    border-color: rgba(100, 200, 255, 1);
    box-shadow: 
        0 0 30px rgba(100, 200, 255, 0.4),
        0 0 60px rgba(100, 200, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .btn-icon {
    transform: translateX(5px);
}

/* Floating Orbs Animation */
.contact-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 200, 255, 0.3), transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-30px) rotate(10deg); opacity: 0.6; }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 0;
}

.back-button {
    position: fixed;
    top: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(15, 15, 20, 0.35);
    backdrop-filter: blur(16px) brightness(1.1);
    -webkit-backdrop-filter: blur(16px) brightness(1.1);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-button:hover {
    background: rgba(15, 15, 20, 0.5);
    color: #fff;
    transform: translateX(-5px);
    border-color: rgba(100, 200, 255, 0.4);
    box-shadow: 0 0 20px rgba(100, 200, 255, 0.2);
}

.back-icon {
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.back-button:hover .back-icon {
    transform: translateX(-3px);
}

.contact-page-container {
    text-align: center;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.contact-page-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    margin: 20px 0;
    letter-spacing: -0.02em;
}

.contact-page-title span {
    background: linear-gradient(135deg, #64c8ff, #a78bfa, #64c8ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

.contact-page-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Social Links Grid */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 30px;
    border-radius: 20px;
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(15, 15, 20, 0.6);
    border-color: rgba(100, 200, 255, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(100, 200, 255, 0.15);
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.github-icon {
    background: linear-gradient(135deg, #333, #24292e);
    color: #fff;
}

.instagram-icon {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.linkedin-icon {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    color: #fff;
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.social-info {
    flex: 1;
    text-align: left;
}

.social-info h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.social-info p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.social-card:hover .social-arrow {
    color: #64c8ff;
    transform: translateX(5px);
}

/* Email Section */
.email-section {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.email-section p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.email-link {
    font-family: 'Unbounded', sans-serif;
    font-size: 2rem;
    color: #64c8ff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #64c8ff, #a78bfa);
    transition: width 0.3s ease;
}

.email-link:hover::after {
    width: 100%;
}

.email-link:hover {
    text-shadow: 0 0 20px rgba(100, 200, 255, 0.5);
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-page {
        padding: 20px;
        padding-top: 100px;
    }
    
    .back-button {
        top: 20px;
        left: 20px;
        padding: 10px 18px;
        font-size: 1.2rem;
    }
    
    .contact-page-title {
        font-size: 4rem;
    }
    
    .contact-page-subtitle {
        font-size: 1.5rem;
    }
    
    .social-card {
        padding: 18px 20px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .social-info h3 {
        font-size: 1.6rem;
    }
    
    .email-link {
        font-size: 1.6rem;
    }
}

.project-card:focus {
    border-color: rgba(183, 75, 75, 0.6);
    box-shadow: 
        0 0 0 3px rgba(183, 75, 75, 0.3),
        0 16px 48px rgba(0, 0, 0, 0.4);
}

.project-card:hover {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.95) 0%, rgba(38, 38, 38, 0.9) 100%);
    border-color: rgba(183, 75, 75, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 24px rgba(183, 75, 75, 0.2);
    color: #fff;
    text-decoration: none;
}

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

.project-card:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.project-card .project-title {
    color: #b74b4b;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: block;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(183, 75, 75, 0.3);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #b74b4b 0%, #d65555 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    transform: translateY(-2px);
    text-shadow: 0 4px 16px rgba(183, 75, 75, 0.4);
}

.project-card .project-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-top: 0.6rem;
    display: block;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-weight: 400;
    transition: all 0.3s ease;
}

.project-card:hover .project-desc {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.project-card .project-meta {
    margin-top: 1.8rem;
    font-size: 1.1rem;
    color: rgba(183, 75, 75, 0.8);
    display: flex;
    gap: 1.6rem;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.project-card:hover .project-meta {
    color: rgba(183, 75, 75, 0.9);
    transform: translateY(-1px);
}

.project-card .project-meta i {
    margin-right: 0.5rem;
    color: #b74b4b;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.project-card:hover .project-meta i {
    transform: scale(1.1);
}

/* ===== ATM SECTION ===== */
.atm-container {
    background: #181818;
    border-radius: 1.5rem;
    box-shadow: 0 0 20px #b74b4b44;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: atmFadeIn 1.2s cubic-bezier(0.4,0,0.2,1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.atm-screen {
    background: #222;
    border-radius: 1rem;
    padding: 2.2rem;
    width: 100%;
    min-height: 7rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #b74b4b;
    text-align: center;
    animation: screenPop 1.1s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 0 24px #b74b4b33;
}

form {
    width: 100%;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
    animation: fadeUp 1.1s cubic-bezier(0.4,0,0.2,1);
}

input[type="password"],
input[type="number"] {
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.3rem;
    background: #222;
    color: #fff;
    border: 1px solid #b74b4b;
    width: 60%;
}

button {
    padding: 1.2rem 2.2rem;
    border-radius: 0.7rem;
    background: #b74b4b;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin: 0.3rem 0;
}

button:hover {
    background: #fff;
    color: #b74b4b;
    transform: scale(1.07) translateY(-2px);
}

#atm-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1rem;
}

.safety-tips {
    background: #232323;
    color: #fff;
    border-radius: 0.8rem;
    padding: 1.2rem 1.5rem;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    box-shadow: 0 0 10px #b74b4b22;
    width: 100%;
    max-width: 420px;
    animation: fadeUp 1.2s cubic-bezier(0.4,0,0.2,1);
}

.safety-tips ul {
    margin: 0;
    padding-left: 1.2rem;
}

.safety-tips li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* ===== TODO SECTION ===== */
.todo-container {
  background: #232323;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(183, 75, 75, 0.25), 0 1.5px 6px 0 #b74b4b33;
  padding: 44px 36px 36px 36px;
  margin-top: 60px;
  width: 100%;
  max-width: 440px;
  animation: fadeIn 1s;
  transition: box-shadow 0.3s, transform 0.2s, background 0.3s;
}

.todo-container:hover {
  box-shadow: 0 12px 40px 0 rgba(183, 75, 75, 0.38), 0 3px 12px 0 #b74b4b55;
  background: #242121;
  transform: translateY(-4px) scale(1.015);
}

.hint {
  color: #b74b4b;
  font-size: 1.08rem;
  margin-bottom: 20px;
  text-align: center;
  font-style: italic;
  letter-spacing: 0.04em;
}

#taskInput {
  padding: 13px;
  font-size: 1.18rem;
  border-radius: 7px;
  border: 2px solid #b74b4b;
  margin-right: 10px;
  background: #181818;
  color: #fff;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
  width: 62%;
  box-shadow: 0 1px 4px #b74b4b22;
}

#taskInput:hover, #taskInput:focus {
  border: 2px solid #b74b4b;
  background: #232323;
  box-shadow: 0 0 0 2px #b74b4b88;
}

#addBtn {
  padding: 13px 26px;
  background: linear-gradient(90deg, #b74b4b 60%, #a13a3a 100%);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 1.13rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px #b74b4b33;
  transition: background 0.2s, color 0.2s, transform 0.1s, box-shadow 0.2s;
  letter-spacing: 0.04em;
}

#addBtn:hover {
  background: #833535;
  color: #fff;
  border: 2px solid #b74b4b;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 4px 16px #3a101044;
}

#taskList {
  list-style: none;
  padding: 0;
  margin-top: 32px;
  width: 100%;
}

.task-item {
  background: #181818;
  margin-bottom: 13px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.15rem;
  color: #fff;
  box-shadow: 0 1px 6px #b74b4b22;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  position: relative;
  overflow: hidden;
  border-left: 4px solid transparent;
}

.task-item:hover {
  background: #232323;
  box-shadow: 0 2px 12px #b74b4b33;
  border-left: 4px solid #b74b4b;
  transform: scale(1.01);
}

.task-checkbox {
  accent-color: #b74b4b;
  margin-right: 16px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  transition: accent-color 0.2s;
}

.task-text {
  flex: 1;
  color: #fff;
  font-size: 1.22rem;
  transition: color 0.2s;
  user-select: text;
  word-break: break-word;
  letter-spacing: 0.01em;
}

.task-item.done .task-text {
  text-decoration: line-through;
  color: #b74b4b;
  opacity: 0.7;
}

.remove {
  color: #b74b4b;
  font-size: 1.4rem;
  margin-left: 18px;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s, transform 0.1s, background 0.2s;
  padding: 2px 10px;
  border-radius: 5px;
}

.remove:hover {
  color: #b74b4b;
  background: transparent;
  transform: scale(1.18);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
  background: #232323;
}

::-webkit-scrollbar-thumb {
  background: #b74b4b;
  border-radius: 8px;
}

/* ===== MEDIA QUERIES ===== */

/* Max width 1200px */
@media (max-width: 1200px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-col {
    gap: 1.5rem;
  }

    nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 1.9rem;
    background: transparent;
    position: 0;
    padding: 0;
    width: auto;
    border: none;
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    white-space: normal;
  }

  .info-item label,
  .info-item span,
  .info-item a {
    font-size: 1.6rem;
    width: auto;
    min-width: unset;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .info-item label {
    font-weight: 600;
    color: #b74b4b;
  }
}

/* Max width 1000px */
@media (max-width: 1000px){
    .home{
        gap: 4rem;
    }

    .logo a{
    font-size: 3.5rem;
  }
}

/* Max width 995px */
@media(max-width:995px){
    nav{
        position: absolute;
        display: none;
        top: 0;
        right: 0;
        width: 40%;
        border-left: 3px solid #b74b4b;
        border-bottom: 3px solid #b74b4b;
        border-bottom-left-radius: 2rem;
        padding: 1rem solid;
        background-color: #161616;
        border-top: 0.1rem solid rgba(0,0,0,0.1);
         flex-direction: column;
    }

    nav.active{
        display: block;
    }

    nav a{
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    nav a:hover,
    nav a.active{
        padding: 0rem;
        border-radius: 0.5rem;
        border-bottom: 0.5rem solid #b74b4b;
    }

    .home{
        flex-direction: column;
        margin: 5rem 4rem;
    }

    .home .home-content h3{
        font-size: 2.5rem;
    }

    .home-content h1{
        font-size: 5rem;
    }

    .home-img img{
        width: 70vw;
        margin-top: 4rem;
    }

    .atm-container {
        padding: 1.5rem 0.5rem;
        max-width: 98vw;
    }
    h1 {
        font-size: 2rem;
    }
    .atm-screen {
        font-size: 1.1rem;
    }
    .logo {
        font-size: 1.5rem;
    }
}

/* Max width 970px */
@media (min-width: 950px) and (max-width: 970px) {
  .logo {
    font-size: 3.2rem; 
  }
}

/* Max width 900px */
@media (max-width: 900px) {
  .about-heading {
    margin-bottom: 3rem;
  }

  .about-heading h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }

  .about-container {
    padding: 20px 5vw;
    width: 100%;
  }

  .about-box {
    width: 100%;
    padding: 30px 20px;
    margin-top: 0.5rem;
    height: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-col {
    gap: 1rem;
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    white-space: normal;
  }

  .info-item label,
  .info-item span,
  .info-item a {
    font-size: 1.2rem;
    width: auto;
    min-width: unset;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .info-item label {
    font-weight: 600;
    color: #b74b4b;
  }

  .about-box p {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .about-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}

/* Navigation responsive styles */
@media (max-width: 820px) {
  .container {
    width: 480px;
    height: 70px;
    top: 1.5rem;
    padding: 0.8em 1em;
  }
  
  .btn {
    font-size: 1.4rem;
    padding: 0.8em 1.2em;
    min-width: 70px;
  }
}

@media (max-width: 600px) {
  .container {
    width: 420px;
    height: 65px;
    top: 1rem;
    padding: 0.6em 0.8em;
  }
  
  .btn {
    font-size: 1.2rem;
    padding: 0.6em 1em;
    min-width: 60px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 360px;
    height: 60px;
    top: 0.5rem;
    padding: 0.5em 0.6em;
  }
  
  .btn {
    font-size: 1rem;
    padding: 0.5em 0.8em;
    min-width: 50px;
  }
}

/* Max width 768px */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .about-card {
    padding: 1.5rem 1rem;
    flex-direction: column;
    width: 100%;
    padding: 18px 8px;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-grid {
    flex-direction: column;
    gap: 1rem;
  }
  
  .about-grid > div {
    padding: 0.9rem 1.2rem;
  }

  .left-column, .right-column {
    width: 100%;
    gap: 15px;
  }

  .right-column {
    margin-top: 18px;
  }
}

/* Max width 700px */
@media (max-width: 700px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5vw;
  }

  .logo {
    font-size: 1.8rem; 
    white-space: nowrap;
  }

  nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
    position: static;
    padding: 0;
    width: auto;
    border: none;
  }

  nav a {
    font-size: 1.8rem; 
    margin: 0;
    padding: 0.3rem 0;
    color: white;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 2px solid transparent;
  }

  nav a:hover,
  nav a.active {
    color: #b74b4b;
    border-bottom: 2px solid #b74b4b;
  }

  .nav-toggle {
    display: none;
  }

  .about-box {
    padding: 18px 4vw;
    max-width: 98vw;
  }
  
  .about-box h2 {
    font-size: 1.2rem;
  }
  
  .about-box p,
  .about-box span,
  .about-box a {
    font-size: 0.95rem;
  }

  .projects-section .about-container {
        padding: 18px 4vw;
        max-width: 98vw;
    }
    
    .projects-section h1 {
        font-size: 2.2rem;
    }
    
    .project-card {
        font-size: 1.2rem;
        padding: 2.2rem 1.8rem;
        border-radius: 20px;
    }
    
    .project-card .project-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .project-card .project-desc {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .project-card .project-meta {
        margin-top: 1.4rem;
        font-size: 1rem;
        gap: 1.2rem;
    }
    
    .project-card .project-meta i {
        font-size: 1.1rem;
    }
}

/* Max width 600px */
@media (max-width: 600px) {
  .about-card {
    padding: 1.2rem 0.7rem;
  }
  
  .about-grid > div {
    padding: 0.8rem 1rem;
  }
}

/* Max width 500px */
@media (max-width: 500px) {
  nav a {
    font-size: 1.2rem;
    margin-left: 1rem;
    padding: 0.2rem 0.3rem;
  }
  
  nav a.active {
    font-size: 1.2rem;
  }
  
  .header{
    font-size: sma;
  }
  
  .about-heading {
    margin-bottom: 3rem; 
  }

 .home-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .home-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .about-heading h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .about-container {
    padding: 12px 3vw;
    width: 100%;
  }

  .about-box {
    width: 100%;
    padding: 24px 16px;
    margin-top: 0.5rem; 
    height: auto; 
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .about-col {
    gap: 0.7rem;
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    white-space: normal;
  }

  .info-item label,
  .info-item span,
  .info-item a {
    font-size: 1rem;
    width: auto;
    min-width: unset;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .info-item label {
    font-weight: 600;
    color: #b74b4b;
  }

  .about-box p {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .about-box h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .content.left {
    margin-left: 20px;
  }
}
