* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background: #0d0d0d;
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    padding: 10px 40px 40px 40px;
    border-radius: 30px;
    margin: 30px;
    background: linear-gradient(135deg, #0f0f0f 0%, #6a11cb 40%, #000000 100%);
    box-shadow: inset 0 -100px 100px rgba(0, 0, 0, 0.6);
    position: relative; /* needed for mobile-menu absolute positioning */
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 10px;
    list-style: none;
    align-items: center;
}

.nav-links a,
.nav-links > li:not(:has(button)) {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, transform 0.15s ease;
    overflow: hidden;
}

/* Animated gradient underline */
.nav-links a::after,
.nav-links > li:not(:has(button))::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 14px;
    width: calc(100% - 28px);
    height: 2px;
    background: linear-gradient(90deg, #ff6a00, #ee0979, #8e2de2);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.nav-links > li:not(:has(button)):hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
}

.nav-links a:hover::after,
.nav-links > li:not(:has(button)):hover::after {
    transform: scaleX(1);
}

.nav-links a:active,
.nav-links > li:not(:has(button)):active {
    transform: translateY(0) scale(0.95);
    background: rgba(255, 106, 0, 0.12);
    color: #ff6a00;
}

.nav-links a.active {
    color: #fff;
}

.nav-links a.active::after {
    transform: scaleX(1);
}

/* Ripple */
.nav-links a .ripple,
.nav-links > li:not(:has(button)) .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0);
    animation: ripple-anim 0.5s linear;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ── BUTTON ───────────────────────────────────────────────── */
.btn {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid #fff;
    cursor: pointer;
    font-weight: 600;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #ff6a00, #ee0979, #8e2de2);
    z-index: -1;
    transition: width 0.4s ease;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 100, 50, 0.6);
}
.resume-btn{
	display:flex;
	align-items:center;
	gap:8px;
	padding:10px 18px;
	background:#ffffff15;
	border:1px solid #ffffff30;
	border-radius:12px;
	color:white;
	text-decoration:none;
	font-weight:500;
	backdrop-filter:blur(10px);
	transition:0.3s ease;
}

.resume-btn:hover{
	transform:translateY(-2px);
	background:#ffffff25;
	border-color:#fff;
}
/* ── LOGO ─────────────────────────────────────────────────── */
.logo img {
    height: 160px;
    border-radius: 10px;
    transition: 0.3s;
    filter: drop-shadow(0 0 10px rgba(255, 80, 0, 0.5));
    display: flex;
    align-items: flex-start;
}

.logo img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* ── DESKTOP ACTION (hamburger container) ─────────────────── */
.desktop-action {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Desktop CTA button — visible on desktop, hidden on mobile */
.desktop-action .desktop-cta {
    display: block;
}

/* Hamburger — hidden on desktop */
.desktop-action .hamburger {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.desktop-action .hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ── MOBILE MENU ──────────────────────────────────────────── */
.mobile-menu {
    display: none; /* hidden on desktop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    position: absolute;
    top: 90px;
    left: -100%;
    transform: translateX(0);
    width: 260px;
    padding: 2rem;
    background: rgba(15, 15, 15, 0.97);
    border: 1px solid rgba(142, 45, 226, 0.5);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(142, 45, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    list-style: none;
    z-index: 100;
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Active state — slides in from left center */
.mobile-menu.mobile-menu-active {
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu li {
    width: 100%;
    text-align: center;
}

.mobile-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #fff;
    background: rgba(255, 106, 0, 0.15);
    transform: translateX(4px);
}

.mobile-menu a i {
    margin-right: 8px;
    font-size: 13px;
    opacity: 0.7;
}

.mobile-menu .btn {
    width: 100%;
    text-align: center;
    font-size: 14px;
}

/* ── HERO CONTENT ─────────────────────────────────────────── */
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.left {
    flex: 1;
}

.left h1 {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.left p {
    margin-bottom: 10px;
    font-weight: 400;
}

.right {
    max-width: 300px;
}

.right h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* ── HERO IMAGE ───────────────────────────────────────────── */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 320px;
    max-width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 0 40px rgba(106, 17, 203, 0.5);
    transition: 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* ── TYPOGRAPHY EFFECTS ───────────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, #fff, #ffb199);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 100, 50, 0.3);
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.typing {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6a00, #ee0979, #8e2de2, #4a00e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 5px;
    margin-left: 5px;
    animation: blink 0.7s infinite;
    text-shadow: 0 0 20px rgba(255, 100, 50, 0.4);
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.after-text {
    margin-left: 2px;
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* ── BRANDS / STARTUP ─────────────────────────────────────── */
.startup {
    padding: 30px;
    text-align: center;
}

.startup p {
    text-align: center;
    margin: 0 auto;
    white-space: nowrap;
}

.startup-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 15px;
    opacity: 0.7;
}

.startup-logos a {
    text-decoration: none;
    color: #aaa;
    font-weight: 500;
    transition: all 0.3s ease;
}

.startup-logos a:hover {
    color: #a855f7;
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about {
    display: flex;
    justify-content: space-between;
    padding: 50px 30px;
    flex-wrap: wrap;
}

.about-left h2 {
    font-size: 40px;
    max-width: 400px;
}

.small-title {
    color: orange;
    margin-bottom: 10px;
}

.about-right {
    max-width: 400px;
}

.about-right p {
    margin-bottom: 20px;
}

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery {
    display: flex;
    gap: 20px;
    padding: 30px;
}

.card {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 0 0px rgba(142, 45, 226, 0);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: brightness(0.85) saturate(0.9);
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(106, 17, 203, 0.6) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 0 25px rgba(142, 45, 226, 0.6),
        0 0 60px rgba(255, 106, 0, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.5);
}

.card:hover img {
    transform: scale(1.08);
    filter: brightness(1) saturate(1.2);
}

.card:hover::after {
    opacity: 1;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 50px 20px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    gap: 30px;
}

.footer-left h3 {
    font-size: 22px;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ff6a00, #ee0979, #8e2de2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-left p {
    color: #aaa;
}

.contact-info {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    padding: 4px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}
.contact-info a{
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

.contact-info a:hover{
    color: #fff;
    text-shadow:
        0 0 8px rgba(255, 100, 50, 0.5),
        0 0 15px rgba(142, 45, 226, 0.4);
}
.info-card p a {
    text-decoration: none;
    color: inherit;
}
.contact-info i {
    margin-right: 8px;
    color: #ff6a00;
}

.contact-info p:hover {
    color: #fff;
    transform: translateX(6px);
    font-weight: 600;
    text-shadow:
        0 0 8px rgba(255, 100, 50, 0.5),
        0 0 15px rgba(142, 45, 226, 0.4);
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-social a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 22px;
    margin: 0 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #ff6a00, #ee0979, #8e2de2);
    color: #fff;
    transform: translateY(-5px);
}

.footer-brands {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 600px;
    margin: auto;
}

.brand {
    position: relative;
    padding: 10px 12px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.brand::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 1px;
    background: linear-gradient(135deg, #ff6a00, #ee0979, #8e2de2);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s ease;
}

.brand img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: grayscale(100%);
    transition: 0.4s ease;
}

.brand p {
    font-size: 14px;
    color: #aaa;
    transition: 0.4s ease;
}

.brand:hover {
    transform: translateY(-6px) scale(1.03);
    background: rgba(255, 255, 255, 0.06);
    animation: glowPulse 1.5s infinite alternate;
}

.brand:hover::before {
    opacity: 1;
}

.brand:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.brand:hover p {
    color: #fff;
}

@keyframes glowPulse {
    from { box-shadow: 0 0 20px rgba(255, 100, 50, 0.2); }
    to   { box-shadow: 0 0 40px rgba(255, 100, 50, 0.5); }
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 14px;
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 780px)
   Matches the pattern you specified exactly
══════════════════════════════════════════ */
@media screen and (max-width: 780px) {

    /* ── NAVBAR: hide desktop nav links & CTA ── */
    .nav-links,
    .desktop-action .desktop-cta {
        display: none;
    }

    /* ── Show hamburger icon ── */
    .desktop-action .hamburger {
        display: block;
    }

    /* ── Mobile menu: hidden off-screen by default ── */
    .mobile-menu {
        display: flex; /* layout is flex, visibility controlled by left */
    }

    /* Slides in when active */
    .mobile-menu.mobile-menu-active {
        left: 50%;
        transform: translateX(-50%);
    }

    /* ── Logo shrinks ── */
    .logo img {
        height: 100px;
        display: block;
    }

    /* ── Hero ── */
    .hero {
        margin: 10px;
        padding: 20px;
        border-radius: 20px;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        margin-top: 30px;
    }

    h1, .left h1 {
        font-size: 3.6rem;
        letter-spacing: -1px;
    }

    .left p {
        font-size: 14px;
    }

    .typing {
        font-size: 20px;
    }

    .right {
        max-width: 100%;
    }

    .right h3 {
        font-size: 18px;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-image img {
        width: 250px;
    }

    /* ── About ── */
    .about {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    h2, .about-left h2 {
        font-size: 2rem;
    }

    /* ── Gallery ── */
    .gallery {
        flex-direction: column;
        padding: 15px;
    }

    .card {
        width: 100%;
        min-height: 200px;
    }

    /* ── Startup logos ── */
    .startup-logos {
        flex-wrap: wrap;
        gap: 15px;
    }

    .startup p {
        white-space: normal;
        font-size: 13px;
    }

    /* ── Footer ── */
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-brands {
        gap: 20px;
        flex-wrap: wrap;
    }

    .brand img {
        width: 50px;
        height: 50px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ── Tablets (781px – 1024px) ── */
@media (min-width: 781px) and (max-width: 1024px) {
    .left h1 {
        font-size: 55px;
    }

    .hero-image img {
        width: 280px;
    }

    .gallery {
        flex-wrap: wrap;
    }

    .card {
        min-width: 45%;
    }

    .footer-container {
        gap: 20px;
    }
}

/* ── Small phones (≤ 400px) ── */
@media (max-width: 400px) {
    .left h1 {
        font-size: 28px;
    }

    .hero-image img {
        width: 180px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .gallery {
        padding: 10px;
    }
}

/* ── Ultra small (≤ 320px) ── */
@media (max-width: 320px) {
    .left h1 {
        font-size: 24px;
    }

    .typing {
        font-size: 16px;
    }

    .hero-image img {
        width: 150px;
    }
}

/*-PROJECT*/

/* ── FILTER CONTAINER ─────────────────────────────────────── */
.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    margin: 30px 0 20px;
    flex-wrap: wrap;
    gap: 15px;
}

/* ── FILTER BUTTONS ───────────────────────────────────────── */
.project-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ccc;
    cursor: pointer;
    font-weight: 600;
    z-index: 1;
    transition: color 0.3s ease, transform 0.2s ease;
}

.filter-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #ff6a00, #ee0979, #8e2de2);
    z-index: -1;
    transition: width 0.4s ease;
}

.filter-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 100, 50, 0.4);
}

.filter-btn:hover::before {
    width: 100%;
}

.filter-btn.active {
    background: linear-gradient(135deg, #ff6a00, #ee0979, #8e2de2);
    color: #fff;
    border: none;
    box-shadow: 0 0 20px rgba(255, 100, 50, 0.5);
}

/* ── EXPLORE BUTTON ───────────────────────────────────────── */
.explore-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.explore-btn:hover {
    background: linear-gradient(135deg, #ff6a00, #ee0979, #8e2de2);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ── PROJECTS GRID ────────────────────────────────────────── */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── PROJECT CARD ─────────────────────────────────────────── */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    height: 220px;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    border: 1px solid rgba(142, 45, 226, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 0 0px rgba(142, 45, 226, 0);
}

.project-card a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.project-card video,
.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) saturate(0.9);
    transition: transform 0.4s ease, filter 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
}

.project-card video:not([src]),
.project-card video[src=""] {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

/* ── PROJECT OVERLAY ──────────────────────────────────────── */
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.project-overlay p {
    font-size: 13px;
    color: #aaa;
}

/* ── CARD HOVER ───────────────────────────────────────────── */
.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 0 25px rgba(142, 45, 226, 0.6),
        0 0 60px rgba(255, 106, 0, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.5);
}

.project-card:hover video,
.project-card:hover img {
    transform: scale(1.08);
    filter: brightness(1) saturate(1.2);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* ── BEFORE / AFTER ───────────────────────────────────────── */
.before-after {
    padding: 60px 40px;
    text-align: center;
}

.before-after h2 {
    font-size: 32px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ff6a00, #ee0979, #8e2de2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.before-after-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.ba-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0px rgba(142, 45, 226, 0);
}

.ba-card h3 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #ccc;
}

.ba-card video {
    width: 100%;
    border-radius: 12px;
}

.ba-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 25px rgba(142, 45, 226, 0.4),
        0 0 50px rgba(255, 106, 0, 0.15);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .filter-container {
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .projects-grid {
        padding: 20px;
        grid-template-columns: 1fr;
    }

    .before-after {
        padding: 40px 20px;
    }

    .before-after h2 {
        font-size: 24px;
    }
}
/* ─────────────────────────────────────────────
   PROJECT SECTION – FINAL RESPONSIVE LAYER
──────────────────────────────────────────── */

/* Tablets */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        padding: 0 25px 30px;
        gap: 20px;
    }

    .filter-container {
        padding: 0 25px;
    }

    .project-card {
        height: 200px;
    }

    .project-card video,
    .project-card img {
        height: 200px;
    }
}

/* Small Tablets */
@media (max-width: 900px) {
    .filter-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .project-filter {
        justify-content: center;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .before-after-container {
        gap: 20px;
    }

    .ba-card {
        min-width: 240px;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    .filter-container {
        padding: 0 15px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .explore-btn {
        font-size: 12px;
        padding: 8px 14px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 16px;
    }

    .project-card {
        height: 180px;
    }

    .project-card video,
    .project-card img {
        height: 180px;
    }

    .project-overlay h3 {
        font-size: 16px;
    }

    .project-overlay p {
        font-size: 12px;
    }

    .before-after {
        padding: 30px 15px;
    }

    .before-after h2 {
        font-size: 22px;
    }

    .ba-card {
        min-width: 100%;
    }
}

/* Small Phones */
@media (max-width: 400px) {
    .filter-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

    .project-card {
        height: 160px;
    }

    .project-card video,
    .project-card img {
        height: 160px;
    }

    .project-overlay h3 {
        font-size: 14px;
    }

    .project-overlay p {
        font-size: 11px;
    }
}

/* Ultra Small Devices */
@media (max-width: 320px) {
    .filter-btn {
        width: 100%;
        text-align: center;
    }

    .projects-grid {
        padding: 10px;
    }

    .project-card {
        height: 150px;
    }
}
/* contact*/
/* ══════════════════════════════════════════
   CONTACT PAGE — contact.css
   Extends style.css (shared base)
══════════════════════════════════════════ */

/* ── CONTACT HERO ─────────────────────────────────────────── */
.contact-hero {
    padding-bottom: 60px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-hero-content {
    flex: 1;
    min-width: 260px;
}

.contact-hero-content h1 {
    font-size: 70px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 380px;
    margin-top: 12px;
}

/* ── LOCATION MESSAGE ─────────────────────────────────────── */
.location-msg {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
    margin: 8px 0 0;
    transition: color 0.3s ease;
}

/* ── MAP HEADING ──────────────────────────────────────────── */
.map-heading {
    text-align: center;
    padding: 40px 20px 20px;
}

.map-heading h2 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6a00, #ee0979, #8e2de2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.cursor {
    display: inline-block;
    color: #ee0979;
    -webkit-text-fill-color: #ee0979;
    animation: blink-cursor 0.7s step-end infinite;
    font-weight: 300;
    margin-left: 2px;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── MAP ──────────────────────────────────────────────────── */
#map {
    width: calc(100% - 60px);
    height: 380px;
    margin: 0 30px 40px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(142, 45, 226, 0.4);
    box-shadow:
        0 0 40px rgba(106, 17, 203, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1;
    position: relative;
}

/* ── CONTACT SECTION LAYOUT ───────────────────────────────── */
.contact-section {
    padding: 0 30px 60px;
}

/* Inner two-column layout wrapping info + form */
.contact-section > div {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* ── INFO SIDE ────────────────────────────────────────────── */
.contact-info-side {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ── INFO CARDS ───────────────────────────────────────────── */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(142, 45, 226, 0.25);
    border-radius: 16px;
    padding: 18px 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateX(6px);
    border-color: rgba(238, 9, 121, 0.5);
    box-shadow:
        0 0 20px rgba(142, 45, 226, 0.25),
        0 0 40px rgba(255, 106, 0, 0.1);
}

.info-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.15), rgba(142, 45, 226, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ff6a00;
    transition: background 0.3s ease, transform 0.3s ease;
}

.info-card:hover .info-icon {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.info-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* ── SOCIAL ROW ───────────────────────────────────────────── */
.social-row {
    display: flex;
    gap: 12px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ccc;
    font-size: 18px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-row a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff6a00, #ee0979, #8e2de2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-row a i {
    position: relative;
    z-index: 1;
}

.social-row a:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(238, 9, 121, 0.35);
}

.social-row a:hover::before {
    opacity: 1;
}

/* ── FORM SIDE ────────────────────────────────────────────── */
.contact-form-side {
    flex: 1.4;
    min-width: 280px;
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(142, 45, 226, 0.3);
    border-radius: 24px;
    padding: 36px 32px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 0 60px rgba(106, 17, 203, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.4s ease;
}

.contact-form:hover {
    box-shadow:
        0 0 80px rgba(106, 17, 203, 0.25),
        0 0 40px rgba(255, 106, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ── FORM ROW (two fields side-by-side) ───────────────────── */
.form-row {
    display: flex;
    gap: 18px;
}

.form-row .form-group {
    flex: 1;
}

/* ── FORM GROUP ───────────────────────────────────────────── */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: #ff6a00;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 13px 16px;
    color: #fff;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(238, 9, 121, 0.6);
    background: rgba(255, 255, 255, 0.07);
    box-shadow:
        0 0 0 3px rgba(238, 9, 121, 0.12),
        0 0 20px rgba(142, 45, 226, 0.15);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: rgba(106, 211, 100, 0.4);
}


/* ── SUBMIT BUTTON ────────────────────────────────────────── */
.submit-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 14px;
    border: none;
    margin-top: 4px;
    cursor: pointer;
    background: linear-gradient(135deg, #ff6a00, #ee0979, #8e2de2);
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #8e2de2, #ee0979, #ff6a00);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 30px rgba(238, 9, 121, 0.5),
        0 0 60px rgba(255, 106, 0, 0.2),
        0 12px 30px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:active {
    transform: translateY(0) scale(0.97);
}

.submit-btn span,
.submit-btn i {
    position: relative;
    z-index: 1;
}

/* ── FORM SUCCESS MESSAGE ─────────────────────────────────── */
#formSuccess {
    display: none;
    text-align: center;
    padding: 16px;
    background: rgba(106, 211, 100, 0.12);
    border: 1px solid rgba(106, 211, 100, 0.3);
    border-radius: 12px;
    color: #7ddd79;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    animation: fadeInUp 0.4s ease;
}

#formSuccess.show {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* Tablets */
@media (max-width: 1024px) {
    .contact-hero-content h1 {
        font-size: 55px;
    }

    #map {
        width: calc(100% - 40px);
        margin: 0 20px 30px;
        height: 320px;
    }

    .contact-section {
        padding: 0 20px 50px;
    }
}

/* Small tablets */
@media (max-width: 900px) {
    .contact-section > div {
        flex-direction: column;
    }

    .contact-form-side,
    .contact-info-side {
        width: 100%;
    }

    .contact-form {
        padding: 28px 24px;
    }
}

/* Mobile */
@media (max-width: 780px) {
    .contact-hero {
        min-height: auto;
        padding-bottom: 30px;
    }

    .hero-row {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        margin-top: 24px;
    }

    .contact-hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero-sub {
        font-size: 13px;
        margin: 10px auto 0;
    }

    .map-heading h2 {
        font-size: 20px;
    }

    #map {
        width: calc(100% - 20px);
        margin: 0 10px 24px;
        height: 260px;
        border-radius: 16px;
    }

    .contact-section {
        padding: 0 12px 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .info-card {
        padding: 14px 16px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 17px;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .social-row a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 13px 20px;
    }
}

/* Ultra small */
@media (max-width: 320px) {
    .contact-hero-content h1 {
        font-size: 1.7rem;
    }

    .map-heading {
        padding: 24px 12px 12px;
    }

    #map {
        height: 220px;
    }
}

/* ─────────────────────────────────────────────
   SKILLS SECTION  –  Premium Rewrite
   Font stack: Syne (headings) + DM Sans (body)
───────────────────────────────────────────── */

:root {
    --orange:  #ff6a00;
    --pink:    #ee0979;
    --purple:  #8e2de2;
    --grad: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
    --card-bg: rgba(14, 10, 24, 0.72);
    --border:  rgba(142, 45, 226, 0.18);
    --text-dim: rgba(200,190,220,0.55);
}

/* ── SECTION WRAPPER ───────────────────── */

.skills {
    padding: 80px 24px 100px;
    max-width: 1120px;
    margin: 0 auto;
    font-family: 'DM Sans', sans-serif;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 52px;
}

/* ── GRID ──────────────────────────────── */

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}

/* ── SKILL CARD ────────────────────────── */

.skill-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 28px 26px 24px;
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
    cursor: default;

    /* entrance: hidden until in-view class added */
    opacity: 0;
    transform: translateY(36px) scale(0.96);
    transition:
        opacity   0.55s cubic-bezier(0.22,1,0.36,1),
        transform 0.55s cubic-bezier(0.22,1,0.36,1),
        box-shadow 0.35s ease;

    /* 3D tilt */
    transform-style: preserve-3d;
    will-change: transform;
}

.skill-card.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ── ANIMATED GRADIENT BORDER ────────── */

.card-border-anim {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    z-index: 0;
    background: conic-gradient(
        from var(--border-angle, 0deg),
        transparent 60%,
        var(--orange),
        var(--pink),
        var(--purple),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;

    /* clip to just the border area */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    padding: 2px;
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes spin-border {
    to { --border-angle: 360deg; }
}

.skill-card:hover .card-border-anim {
    opacity: 1;
    animation: spin-border 3s linear infinite;
}

/* ── RADIAL GLOW (follows cursor) ──────── */

.card-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
    transition: background 0.1s ease;
    background: radial-gradient(circle at 50% 50%, rgba(255,106,0,0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover .card-glow {
    opacity: 1;
}

/* ── CARD CONTENT (above z-layers) ──── */

.card-header,
.progress-track,
.card-tags {
    position: relative;
    z-index: 2;
}

/* ── HEADER ROW ─────────────────────── */

.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

/* Icon bubble */
.skill-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,106,0,0.18), rgba(142,45,226,0.22));
    border: 1px solid rgba(255,106,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: #ff8c40;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.skill-card:hover .skill-icon-wrap {
    box-shadow: 0 0 20px rgba(255,106,0,0.45);
    transform: scale(1.08) rotate(-4deg);
}

.skill-meta {
    flex: 1;
    min-width: 0;
}

.skill-meta h3 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #f0eaf8;
    margin: 0 0 3px;
    letter-spacing: 0.01em;
}

.skill-meta p {
    font-size: 12px;
    color: var(--text-dim);
    margin: 0;
    letter-spacing: 0.04em;
}

/* Animated percentage counter */
.skill-percent {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 52px;
    text-align: right;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.skill-card:hover .skill-percent {
    transform: scale(1.12);
}

/* ── PROGRESS TRACK ─────────────────── */

.progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 18px;
}

.progress-fill {
    height: 100%;
    width: 0;                           /* animated by JS */
    border-radius: 99px;
    position: relative;
    background: var(--grad);
    box-shadow: 0 0 12px rgba(255,100,50,0.55), 0 0 24px rgba(142,45,226,0.3);
    transition: width 1.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

/* Continuous shine sweep */
.progress-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.55) 50%,
        transparent 100%
    );
    animation: shine-sweep 2.2s ease-in-out infinite;
}

@keyframes shine-sweep {
    0%   { transform: translateX(-120%); }
    100% { transform: translateX(220%);  }
}

/* ── TAGS ───────────────────────────── */

.card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.card-tags span {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(200,175,240,0.7);
    background: rgba(142,45,226,0.1);
    border: 1px solid rgba(142,45,226,0.2);
    border-radius: 99px;
    padding: 3px 10px;
    transition: background 0.25s, color 0.25s;
}

.skill-card:hover .card-tags span {
    background: rgba(255,106,0,0.12);
    border-color: rgba(255,106,0,0.25);
    color: rgba(255,200,160,0.9);
}

/* ── FLOATING ORBS (decorative bg) ──── */

.skills::before,
.skills::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(90px);
    opacity: 0.18;
}

.skills {
    position: relative;
}

.skills::before {
    width: 380px;
    height: 380px;
    background: var(--purple);
    top: -80px;
    right: -100px;
    animation: orb-float 8s ease-in-out infinite alternate;
}

.skills::after {
    width: 280px;
    height: 280px;
    background: var(--orange);
    bottom: 40px;
    left: -60px;
    animation: orb-float 10s ease-in-out infinite alternate-reverse;
}

@keyframes orb-float {
    from { transform: translate(0, 0) scale(1);   }
    to   { transform: translate(30px, 20px) scale(1.08); }
}

/* ── RESPONSIVE ─────────────────────── */

@media (max-width: 768px) {
    .skills {
        padding: 50px 16px 70px;
    }
    .skill-card {
        padding: 22px 20px 20px;
    }
    .skill-percent {
        font-size: 18px;
    }
}

/* ─────────────────────────────────────────────
   SKILLS SECTION – FINAL RESPONSIVE LAYER
──────────────────────────────────────────── */

/* Tablets */
@media (max-width: 1024px) {
    .skills {
        padding: 70px 20px 90px;
    }

    .skills-container {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 18px;
    }

    .section-title {
        font-size: 36px;
    }
}

/* Small Tablets */
@media (max-width: 900px) {
    .skills-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .section-subtitle {
        margin-bottom: 35px;
    }

    .skill-card {
        padding: 20px;
    }

    .skill-meta h3 {
        font-size: 15px;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    .skills {
        padding: 45px 14px 65px;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
        font-size: 12px;
        margin-bottom: 28px;
    }

    .skills-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .skill-card {
        padding: 18px;
    }

    .card-header {
        gap: 10px;
    }

    .skill-icon-wrap {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .skill-percent {
        font-size: 16px;
        min-width: 40px;
    }

    .progress-track {
        height: 5px;
    }

    .card-tags span {
        font-size: 10px;
        padding: 3px 8px;
    }
}

/* Small Phones */
@media (max-width: 400px) {
    .section-title {
        font-size: 24px;
    }

    .skill-meta h3 {
        font-size: 14px;
    }

    .skill-meta p {
        font-size: 11px;
    }

    .skill-card {
        padding: 16px;
    }

    .card-header {
        flex-wrap: wrap;
    }

    .skill-percent {
        margin-left: auto;
    }
}

/* Ultra Small Devices */
@media (max-width: 320px) {
    .section-title {
        font-size: 22px;
    }

    .skills-container {
        gap: 12px;
    }

    .skill-card {
        padding: 14px;
    }

    .skill-icon-wrap {
        width: 38px;
        height: 38px;
    }
	@media screen and (max-width: 768px){

    .resume-btn{
        display: none
		;
    }

}
}
