* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Hide real site completely during intro */
#intro .btn-home2,
#intro a {
    display: none !important;
}
#intro * {
    pointer-events: none;
}
#real-site * {
    pointer-events: auto;
}

#intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0e1638;
}

/* Ensure real site is not visible initially */
#real-site {
    display: none;
}

/* ===== PRODUCT SECTION ===== */
.product-section {
    margin: 160px 200px;
    color: #ffffff;
}

.product-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #00bcd4;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title {
    font-family: "Orbitron", sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00bcd4, #006064);
    margin: 0 auto;
    border-radius: 10px;
}

/* Product Card */
.product-container {
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 188, 212, 0.25);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(0, 188, 212, 0.2);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #006064);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00bcd4, #006064);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.4);
}

/* Product Content */
.product-content h2 {
    font-size: 28px;
    color: #80deea;
    margin-bottom: 20px;
    font-family: "Orbitron", sans-serif;
}

.product-description {
    color: #e0f7fa;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Features Section */
.product-features h3 {
    color: #00bcd4;
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    background: rgba(0, 188, 212, 0.08);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 188, 212, 0.15);
    border-color: rgba(0, 188, 212, 0.4);
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.2);
}

.feature-item i {
    font-size: 24px;
    color: #00bcd4;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 16px;
}

.feature-item p {
    color: #b3e5fc;
    font-size: 14px;
    line-height: 1.5;
}

/* Technologies */
.product-tech {
    margin-bottom: 40px;
}

.product-tech h3 {
    color: #00bcd4;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tags span {
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    color: #80deea;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tech-tags span:hover {
    background: rgba(0, 188, 212, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

/* Actions */
.product-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.live-demo-btn, .case-study-btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.live-demo-btn {
    background: linear-gradient(135deg, #00bcd4, #006064);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
}

.live-demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.6);
}

.case-study-btn {
    background: transparent;
    border: 2px solid #00bcd4;
    color: #00bcd4;
}

.case-study-btn:hover {
    background: rgba(0, 188, 212, 0.1);
    transform: translateY(-3px);
}

/* Stats */
.product-stats {
    display: flex;
    justify-content: space-around;
    background: rgba(10, 15, 30, 0.5);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 28px;
    color: #00bcd4;
    margin-bottom: 8px;
    font-family: "Orbitron", sans-serif;
}

.stat p {
    color: #b3e5fc;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199px) {
    .product-section {
        margin: 140px 150px;
    }
}

@media (max-width: 991px) {
    .product-section {
        margin: 120px 100px;
    }
    
    .product-card {
        padding: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 767px) {
    .product-section {
        margin: 100px 50px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .product-content h2 {
        font-size: 24px;
    }
    
    .product-card {
        padding: 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .live-demo-btn, .case-study-btn {
        width: 100%;
        justify-content: center;
    }
    
    .product-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

@media (max-width: 575px) {
    .product-section {
        margin: 80px 25px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 11px;
    }
    
    .product-content h2 {
        font-size: 22px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .tech-tags {
        justify-content: center;
    }
}

body {
    background:
        radial-gradient(circle at 50% 15%, rgba(20, 40, 100, .55), transparent 60%),
        radial-gradient(circle at 50% 85%, rgba(10, 20, 50, .85), transparent 60%),
        linear-gradient(180deg, #0a0a1a, #0c0c24);
    color: #f0f8ff;
    margin: 0;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

/* MAIN */
#intro {
    min-height: 100vh;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.main {
    width: 92%;
    max-width: 1200px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 26px;
    padding: 42px;
    backdrop-filter: blur(28px);
    box-shadow: 0 0 90px rgba(0, 188, 212, .28);
    border: 1px solid rgba(0, 188, 212, 0.15);
}

/* TOP TAGS */
.top-tags {
    display: flex;
    gap: 14px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.top-tags span {
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 188, 212, 0.2);
    letter-spacing: 1px;
    color: #e0f7fa;
}

.dot {
    color: #00bcd4;
}

/* CONTENT */
.content {
    display: flex;
    gap: 60px;
}

/* LEFT */
.left h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.15;
    color: #ffffff;
}

.desc {
    margin: 18px 0 28px;
    font-size: 15px;
    color: #b3e5fc;
    max-width: 460px;
    line-height: 1.6;
}

.live-line {
    margin-bottom: 22px;
}

.live-line span {
    font-size: 12px;
    letter-spacing: 2px;
    color: #00bcd4;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 188, 212, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: .3s;
    color: #e0f7fa;
    white-space: nowrap;
}

.btn i {
    color: #00bcd4;
}

.btn:hover {
    background: rgba(0, 188, 212, 0.15);
    box-shadow: 0 0 16px rgba(0, 188, 212, .45);
}

/* SITE LINK (LEFT) */
.site-link {
    margin-top: 22px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 188, 212, 0.25);
    color: #00bcd4;
}

/* RIGHT CARD */
.right {
    flex: 1;
    background: linear-gradient(180deg, rgba(20, 30, 70, .9), rgba(10, 15, 40, .95));
    border-radius: 22px;
    padding: 28px;
    box-shadow: inset 0 0 40px rgba(0, 188, 212, .08);
    position: relative;
    min-width: 0;
}

/* RIGHT HEADER */
.right-head {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 2px;
    color: #b3e5fc;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.online {
    color: #4db6ac;
}

/* ORBIT */
.orbit-box {
    width: 240px;
    height: 240px;
    margin: auto;
    position: relative;
}

.orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 188, 212, .35);
    animation: spin 16s linear infinite;
}

.orbit i {
    position: absolute;
    background: #0a0a1a;
    color: #00bcd4;
    padding: 7px;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(0, 188, 212, .55);
    font-size: 13px;
}

.i1 { top: -8px; left: 50%; transform: translateX(-50%); }
.i2 { right: -8px; top: 50%; transform: translateY(-50%); }
.i3 { bottom: -8px; left: 50%; transform: translateX(-50%); }
.i4 { left: -8px; top: 50%; transform: translateY(-50%); }

/* CENTER */
.core {
    position: absolute;
    inset: 52px;
    border-radius: 50%;
    background: radial-gradient(circle, #006064, #004d40);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 188, 212, .6);
}

.core span {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: #ffffff;
}

/* STATS */
.stats {
    display: flex;
    gap: 18px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.stats div {
    flex: 1;
    min-width: 120px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    text-align: left;
}

.stats h4 {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
}

.stats p {
    font-size: 12px;
    color: #b3e5fc;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.smooth-out {
    animation: smoothOut 1.2s ease forwards;
}

@keyframes smoothOut {
    from {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: scale(1.1);
        filter: blur(25px);
    }
}

/* ===== ANIMATION TYPES ===== */
.from-top {
    opacity: 0;
    transform: translateY(-40px);
    animation: fromTop 0.8s ease forwards;
}

@keyframes fromTop {
    to { opacity: 1; transform: translateY(0); }
}

.from-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: fromLeft 0.8s ease forwards;
}

@keyframes fromLeft {
    to { opacity: 1; transform: translateX(0); }
}

.from-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fromRight 0.8s ease forwards;
}

@keyframes fromRight {
    to { opacity: 1; transform: translateX(0); }
}

.from-bottom {
    opacity: 0;
    transform: translateY(40px);
    animation: fromBottom 0.8s ease forwards;
}

@keyframes fromBottom {
    to { opacity: 1; transform: translateY(0); }
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 0.8s ease forwards;
}

@keyframes zoomIn {
    to { opacity: 1; transform: scale(1); }
}

/* ===== TYPEWRITER ===== */
.typewriter {
    border-right: 2px solid #00bcd4;
    white-space: nowrap;
    overflow: hidden;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background: rgba(10, 15, 30, 0.9);
    backdrop-filter: blur(10px);
}

.header-list {
    margin: 0 20px;
}

.div-list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.ul-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 12px 28px;
    border-radius: 30px;
    background: rgba(30, 40, 100, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 188, 212, 0.25);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.25);
    flex-wrap: wrap;
}

.ul-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 25px;
    padding: 8px 14px;
    transition: 0.3s ease;
}

.ul-list li a {
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    color: #b3e5fc;
    font-size: 14px;
    transition: 0.3s;
    white-space: nowrap;
}

.ul-list li i {
    color: #00bcd4;
}

.ul-list li:hover {
    background: rgba(0, 188, 212, 0.25);
    box-shadow: 0 0 12px rgba(0, 188, 212, 0.4);
}

.ul-list li.active {
    background: linear-gradient(135deg, #00bcd4, #006064);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.6);
}

.ul-list li.active a,
.ul-list li.active i {
    color: #ffffff;
}

/* HOME SECTION */
.home {
    margin: 160px 200px;
    color: #ffffff;
}

.home-container {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.home-p {
    background: rgba(0, 188, 212, 0.15);
    color: #80deea;
    display: inline-block;
    border-radius: 25px;
    padding: 6px 14px;
    margin-bottom: 30px;
    font-size: 14px;
}

.home-s {
    font-weight: bold;
    color: #00bcd4;
}

.info-home h1 {
    font-size: 70px;
    font-family: "Raleway", sans-serif;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.1;
}

.info-home h3 {
    font-size: 40px;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    color: #80deea;
    line-height: 1.2;
}

.info-p {
    color: #e0f7fa;
    padding-bottom: 20px;
    line-height: 1.6;
}

.info-p p {
    padding-bottom: 5px;
}

.info-p2 {
    display: flex;
    gap: 2rem;
    color: #b3e5fc;
    font-size: 14px;
    padding-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btnn {
    display: flex;
    gap: 1rem;
    padding-bottom: 30px;
    flex-wrap: wrap;
}

.btn-home1, .btn-home2 {
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 500;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-home1 {
    background: linear-gradient(135deg, #00bcd4, #006064);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.4);
}

.btn-home1:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.6);
}

.btn-home2 {
    background: transparent;
    border: 2px solid #00bcd4;
    color: #00bcd4;
}

.btn-home2:hover {
    background: #00bcd4;
    color: #ffffff;
}

.hhr {
    padding-bottom: 30px;
}

hr {
    width: 90%;
    border: 1px solid rgba(0, 188, 212, 0.4);
    margin: 0;
}

.follow {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.follow ul {
    display: flex;
    gap: 2rem;
    font-size: 20px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.follow ul li {
    list-style: none;
}

.follow ul a {
    text-decoration: none;
    color: #80deea;
    transition: 0.3s;
}

.follow ul a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #00bcd4;
}

.home img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.4);
}

/* ===== PROJECT SECTION ===== */
.project {
    margin: 160px 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #ffffff;
}

.info-pro {
    margin-bottom: 20px;
    text-align: center;
}

.project > p {
    color: #00bcd4;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.project h1 {
    font-family: "Orbitron", sans-serif;
    padding-bottom: 10px;
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 36px;
}

.project > p + p {
    padding-bottom: 20px;
    font-size: 14px;
    color: #b3e5fc;
}

.project hr {
    width: 80px;
    height: 3px;
    border: none;
    background: linear-gradient(90deg, #00bcd4, #006064);
    margin-bottom: 20px;
    border-radius: 10px;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    width: 100%;
}

.project-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 188, 212, 0.25);
    padding: 22px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.15);
    transition: 0.35s ease;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 35px rgba(0, 188, 212, 0.45);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 188, 212, 0.25);
}

.project-card h3 {
    color: #80deea;
    margin-bottom: 8px;
    font-size: 18px;
}

.project-card p {
    color: #e0f7fa;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.project-card .skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.project-card .skills a {
    display: inline-block;
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 20px;
    color: #80deea;
    border: 1px solid rgba(0, 188, 212, 0.4);
    background: rgba(0, 188, 212, 0.08);
    text-decoration: none;
    transition: 0.3s;
}

.project-card .skills a:hover {
    background: rgba(0, 188, 212, 0.2);
}

.project-card .btns {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.project-card .btn {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #ffffff;
    background: linear-gradient(135deg, #00bcd4, #006064);
    text-decoration: none;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.project-card .btn:hover {
    box-shadow: 0 0 18px rgba(0, 188, 212, 0.6);
    transform: translateY(-2px);
}

/* ABOUT SECTION */
.about {
    margin: 160px 200px;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
}

.about-info {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.img-about img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid rgba(0, 188, 212, 0.6);
    box-shadow: 0 0 12px rgba(0, 188, 212, 0.6);
    object-fit: cover;
}

.info-text {
    position: relative;
}

.info-text p {
    color: #b3e5fc;
    font-size: 14px;
}

.info-text h5 {
    margin-bottom: 4px;
    color: #80deea;
    font-size: 16px;
}

.about > h3 {
    margin-bottom: 2rem;
    font-size: 28px;
    color: #00bcd4;
    font-family: "Orbitron", sans-serif;
}

.about-info2 {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-text {
    flex: 1;
    min-width: 0;
}

.about-text p {
    margin-bottom: 1rem;
    font-family: "Montserrat", sans-serif;
    color: #e0f7fa;
    line-height: 1.7;
}

.about-text span {
    color: #00bcd4;
    font-weight: 600;
    margin-right: 8px;
}

.photo-container {
    position: relative;
    display: inline-block;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 188, 212, 0.25);
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.25);
}

.photo-container img {
    width: 100%;
    max-width: 260px;
    height: 300px;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.tape {
    position: absolute;
    width: 90px;
    height: 30px;
    background: linear-gradient(145deg, #0a1a2a, #0c0c24);
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.15),
        inset 0 -2px 4px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 188, 212, 0.4);
    border-radius: 4px;
    opacity: 0.9;
    z-index: 2;
}

.tape::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.05)
    );
}

.tape1 {
    top: -18px;
    left: 30px;
    transform: rotate(-10deg);
}

.tape2 {
    bottom: -18px;
    right: 30px;
    transform: rotate(10deg);
}

/* ===== SKILLS SECTION ===== */
.skills {
    margin: 160px 200px;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
}

.skills > p {
    color: #00bcd4;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.skills h1 {
    font-family: "Orbitron", sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.skills hr {
    width: 70px;
    height: 3px;
    border: none;
    background: linear-gradient(90deg, #00bcd4, #006064);
    margin-bottom: 50px;
    border-radius: 10px;
}

/* SKILLS GRID CONTAINER */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

/* SKILL BOX */
.skill-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 188, 212, 0.25);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.1);
    position: relative;
    overflow: hidden;
}

.skill-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00bcd4, #006064);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.skill-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 188, 212, 0.25);
    border-color: rgba(0, 188, 212, 0.4);
}

.skill-box:hover::before {
    transform: translateX(0);
}

/* SKILL BOX HEADER */
.skill-box h3 {
    font-size: 18px;
    color: #80deea;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.skill-box h3 i {
    color: #00bcd4;
    font-size: 16px;
    width: 30px;
    height: 30px;
    background: rgba(0, 188, 212, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SKILL TAGS */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.skill-tags span {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 20px;
    font-size: 13px;
    color: #b3e5fc;
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
}

.skill-tags span:hover {
    background: rgba(0, 188, 212, 0.25);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
    border-color: rgba(0, 188, 212, 0.5);
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* CONTACT SECTION */
#contact {
    margin: 160px 200px;
    color: #ffffff;
}

#contact .section-title {
    text-align: center;
    margin-bottom: 50px;
}

#contact .section-title p {
    color: #00bcd4;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

#contact .section-title h1 {
    font-family: "Orbitron", sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

#contact .section-title hr {
    width: 70px;
    height: 3px;
    border: none;
    background: linear-gradient(90deg, #00bcd4, #006064);
    margin: 0 auto;
    border-radius: 10px;
}

.contact-content {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin: 0 auto;
}

.contact-info p {
    color: #b3e5fc;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 15px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #e0f7fa;
}

.contact-item svg {
    color: #00bcd4;
    filter: drop-shadow(0 0 6px rgba(0, 188, 212, 0.6));
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 188, 212, 0.12);
    border: 1px solid rgba(0, 188, 212, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #80deea;
    transition: 0.3s ease;
    flex-shrink: 0;
}

.social-link:hover {
    transform: scale(1.15);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.6);
}

.contact-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 188, 212, 0.25);
    border-radius: 18px;
    padding: 35px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.25);
}

.form-group {
    margin-bottom: 22px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 10px;
    color: #ffffff;
    transition: 0.3s;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 0 12px rgba(0, 188, 212, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    padding: 12px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00bcd4, #006064);
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    width: 100%;
    margin-top: 10px;
}

.contact-form .btn:hover {
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.6);
    transform: translateY(-2px);
}

/* ANIMATION PRESETS */
.slide-in-left {
    transform: translateX(-40px);
    opacity: 0;
    transition: all 1.2s ease;
}

.slide-in-right {
    transform: translateX(40px);
    opacity: 0;
    transition: all 1.2s ease;
}

.slide-in-up {
    transform: translateY(40px);
    opacity: 0;
    transition: all 1.2s ease;
}

.glow-genz-button {
    color: #ffffff;
}

/* ANIMATION FOR SKILL TAGS LOADING */
@keyframes tagAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply staggered animation to tags */
.skill-tags span {
    animation: tagAppear 0.4s ease forwards;
    opacity: 0;
}

/* Stagger the animations */
.skill-tags span:nth-child(1) { animation-delay: 0.1s; }
.skill-tags span:nth-child(2) { animation-delay: 0.2s; }
.skill-tags span:nth-child(3) { animation-delay: 0.3s; }
.skill-tags span:nth-child(4) { animation-delay: 0.4s; }
.skill-tags span:nth-child(5) { animation-delay: 0.5s; }
.skill-tags span:nth-child(6) { animation-delay: 0.6s; }
.skill-tags span:nth-child(7) { animation-delay: 0.7s; }
.skill-tags span:nth-child(8) { animation-delay: 0.8s; }

/* ==============================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ============================================== */

/* Extra large screens (1200px and above) */
@media (min-width: 1200px) {
    .main {
        max-width: 1200px;
    }
}

/* Large tablets and small desktops (992px - 1199px) */
@media (max-width: 1199px) {
    .home, .about, .project, .skills, #contact {
        margin: 140px 150px;
    }
    
    .home-container {
        gap: 4rem;
    }
    
    .info-home h1 {
        font-size: 60px;
    }
    
    .info-home h3 {
        font-size: 35px;
    }
    
    .skills-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .contact-content {
        gap: 60px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .home, .about, .project, .skills, #contact {
        margin: 120px 100px;
    }
    
    .home-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .home img {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .info-home h1 {
        font-size: 50px;
    }
    
    .info-home h3 {
        font-size: 30px;
    }
    
    .info-p2 {
        justify-content: center;
    }
    
    .btnn {
        justify-content: center;
    }
    
    .follow {
        justify-content: center;
        text-align: center;
    }
    
    .follow ul {
        justify-content: center;
    }
    
    .about-info2 {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .photo-container {
        margin-top: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .content {
        flex-direction: column;
        gap: 40px;
    }
    
    .left h1 {
        font-size: 42px;
    }
    
    .orbit-box {
        width: 200px;
        height: 200px;
    }
    
    .core {
        inset: 42px;
    }
    
    .stats div {
        min-width: 100px;
    }
    
    .ul-list {
        gap: 1rem;
        padding: 10px 20px;
    }
}

/* Large phones (576px - 767px) */
@media (max-width: 767px) {
    .home, .about, .project, .skills, #contact {
        margin: 100px 50px;
    }
    
    .card {
        padding: 30px;
    }
    
    .info-home h1 {
        font-size: 42px;
    }
    
    .info-home h3 {
        font-size: 26px;
    }
    
    .home-p {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .btnn {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-home1, .btn-home2 {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .info-p2 {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .follow {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .follow ul {
        gap: 1.5rem;
    }
    
    .project > h1,
    .skills > h1,
    #contact .section-title h1 {
        font-size: 32px;
    }
    
    .project > p,
    .skills > p,
    #contact .section-title p {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skills-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skill-box {
        padding: 22px;
    }
    
    .skill-box h3 {
        justify-content: center;
    }
    
    .skill-tags {
        justify-content: center;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
    }
    
    .header-list {
        margin: 0 15px;
    }
    
    .ul-list {
        gap: 0.5rem;
        padding: 8px 15px;
    }
    
    .ul-list li {
        padding: 6px 10px;
    }
    
    .ul-list li a {
        font-size: 12px;
    }
    
    .top-tags {
        justify-content: center;
    }
    
    .desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .buttons {
        justify-content: center;
    }
    
    .site-link {
        margin: 22px auto 0;
        display: flex;
        justify-content: center;
    }
    
    .right-head {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .stats {
        justify-content: center;
    }
    
    .stats div {
        min-width: 80px;
        text-align: center;
    }
    
    .stats h4 {
        font-size: 18px;
    }
}

/* Small phones (480px - 575px) */
@media (max-width: 575px) {
    .home, .about, .project, .skills, #contact {
        margin: 80px 25px;
    }
    
    .card {
        padding: 20px;
        border-radius: 20px;
    }
    
    .info-home h1 {
        font-size: 36px;
    }
    
    .info-home h3 {
        font-size: 22px;
    }
    
    .home-p {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .btn-home1, .btn-home2 {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .info-p {
        font-size: 14px;
    }
    
    .info-p2 {
        font-size: 13px;
    }
    
    .home img {
        max-width: 280px;
    }
    
    .project > h1,
    .skills > h1,
    #contact .section-title h1 {
        font-size: 28px;
    }
    
    .about > h3 {
        font-size: 24px;
        text-align: center;
    }
    
    .about-info {
        justify-content: center;
        text-align: center;
    }
    
    .photo-container img {
        height: 250px;
    }
    
    .tape {
        width: 70px;
        height: 25px;
    }
    
    .tape1 {
        left: 20px;
    }
    
    .tape2 {
        right: 20px;
    }
    
    .project-card {
        padding: 18px;
    }
    
    .project-card .btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .left h1 {
        font-size: 32px;
        text-align: center;
    }
    
    .desc {
        font-size: 14px;
    }
    
    .btn {
        font-size: 11px;
        padding: 7px 14px;
    }
    
    .orbit-box {
        width: 180px;
        height: 180px;
    }
    
    .core {
        inset: 35px;
    }
    
    .core span {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    header {
        padding: 5px 0;
    }
    
    .div-list {
        padding: 5px 0;
    }
    
    .ul-list {
        gap: 0.3rem;
        padding: 6px 10px;
        border-radius: 20px;
    }
    
    .ul-list li {
        padding: 4px 8px;
    }
    
    .ul-list li a {
        font-size: 11px;
    }
    
    .ul-list li i {
        font-size: 12px;
    }
}

/* Extra small phones (under 480px) */
@media (max-width: 479px) {
    .home, .about, .project, .skills, #contact {
        margin: 70px 20px;
    }
    
    .card {
        padding: 15px;
        border-radius: 18px;
    }
    
    .info-home h1 {
        font-size: 32px;
    }
    
    .info-home h3 {
        font-size: 20px;
    }
    
    .home-p {
        font-size: 10px;
    }
    
    .btn-home1, .btn-home2 {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .follow ul {
        gap: 1rem;
        font-size: 18px;
    }
    
    .project > h1,
    .skills > h1,
    #contact .section-title h1 {
        font-size: 24px;
    }
    
    .project > p,
    .skills > p,
    #contact .section-title p {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .left h1 {
        font-size: 28px;
    }
    
    .top-tags span {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .orbit-box {
        width: 150px;
        height: 150px;
    }
    
    .core {
        inset: 30px;
    }
    
    .orbit i {
        padding: 5px;
        font-size: 11px;
    }
    
    .stats div {
        min-width: 70px;
        padding: 10px;
    }
    
    .stats h4 {
        font-size: 16px;
    }
    
    .stats p {
        font-size: 11px;
    }
    
    .skill-tags span {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .contact-form .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .typewriter {
        font-size: 14px;
    }
}

/* Landscape orientation for mobile */
@media (max-height: 600px) and (orientation: landscape) {
    #intro {
        min-height: 100vh;
        height: auto;
        padding: 40px 20px;
    }
    
    .card {
        padding: 25px;
    }
    
    .content {
        flex-direction: row;
        align-items: center;
    }
    
    .orbit-box {
        width: 180px;
        height: 180px;
    }
    
    .left h1 {
        font-size: 28px;
    }
    
    .desc {
        font-size: 13px;
        margin: 10px 0 15px;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .card {
        backdrop-filter: blur(40px);
    }
    
    .skill-box, .project-card, .contact-form {
        backdrop-filter: blur(20px);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .orbit {
        animation: none;
    }
    
    .fade-in,
    .from-top,
    .from-left,
    .from-right,
    .from-bottom,
    .zoom-in,
    .reveal,
    .slide-in-left,
    .slide-in-right,
    .slide-in-up {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .project-card:hover,
    .skill-box:hover,
    .btn:hover,
    .btn-home1:hover,
    .btn-home2:hover {
        transform: none;
    }
}

.footer {
    background: linear-gradient(180deg, #0a0f1f, #050814);
    color: #bfc7ff;
    padding: 60px 20px 20px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left h3 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-left p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.footer-links a {
    text-decoration: none;
    color: #bfc7ff;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #6cf2ff;
}

.footer-right a {
    color: #bfc7ff;
    font-size: 20px;
    margin-left: 15px;
    transition: transform 0.3s, color 0.3s;
}

.footer-right a:hover {
    color: #6cf2ff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    font-size: 13px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-right a {
        margin: 0 10px;
    }
}

/* ===============================
   NOTIFICATION POPUP
================================ */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(20, 20, 30, 0.95);
    color: #fff;
    padding: 16px 22px;
    border-radius: 10px;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.35s ease;
    z-index: 9999;
}

/* Visible state */
.notification.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Success */
.notification.success {
    border-left: 4px solid #4ade80;
}

/* Error */
.notification.error {
    border-left: 4px solid #f87171;
}

