@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-color: transparent;
    --text-color: #0f172a;
    --main-color: #2563eb;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: linear-gradient(135deg, #dbeafe, #e0f2fe, #f8fafc);
    color: #0f172a;
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.header.sticky {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Audiowide', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #9f20f4, #7c3aed);
    background-clip: text;
    -webkit-background-clip: text;
    color: rgb(201, 7, 120);
    text-shadow: 0 0 15px #efecf0;
}

.navbar a {
    position: relative;
    font-size: 1.7rem;
    margin-left: 4rem;
    transition: .3s;
    color: #1e293b;
    font-weight: 600;
}

.navbar a:hover {
    color: #c80848;
    transform: translateY(-2px);
}

.navbar a.active {
    color: #c80848;
    border-bottom: 3px solid #2563eb;
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
    cursor: pointer;
}

.home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url('/assets/images/background3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    gap: 4rem;
}

.home-content h3 span {
    color: #e4e806;
}

.home-img {
    position: relative;
    width: 35rem;
    height: 35rem;
    max-width: 100%;
    border-radius: 50%;
    padding: 8px;
    background: conic-gradient(
        transparent 0deg,
        transparent 180deg,
        rgba(0, 229, 255, .2) 220deg,
        #00e5ff 260deg,
        #ffffff 290deg,
        #00e5ff 320deg,
        rgba(0, 229, 255, .2) 340deg,
        transparent 360deg
    );
    background-size: 300% 300%;
    animation: gradientMove 4s linear infinite;
    flex-shrink: 0;
}

.home-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: 0.5s ease;
}

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

.home-img img:hover {
    box-shadow: 0 0 2rem rgb(66, 1, 164);
    transform: scale(1.08);
}

.home-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
}

span {
    color: #ebe525;
}

.home-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
  
    color: #e90857;
}

.home-content p {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.8;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.social-media {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    background: transparent;
    border-radius: 50%;
    border: 2px solid #00e5ff; /* Cyan circular border */
    transition: 0.4s ease;
}

.social-media a i {
    color: #000000; /* Solid black icon color */
    font-size: 2.2rem;
    transition: 0.4s ease;
}

/* Hover effect */
.social-media a:hover {
    background: #00e5ff;
    box-shadow: 0 0 20px #00e5ff;
}

.social-media a:hover i {
    color: #151515; /* Turns white on hover */
}

/* Center alignment on mobile screens */
@media (max-width: 991px) {
    .social-media {
        justify-content: center;
    }
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #2563eb, #7c3aed);
    color: white;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid #00e5ff;
}

.btn-outline:hover {
    background: #00e5ff;
    color: #0f172a;
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 35px rgba(124, 58, 237, 0.6);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: 0.7s;
}

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

.btn-view {
    background: transparent;
    border: 2px solid #2563eb;
    color: #acdd0a;
}

.btn-view:hover {
    background: #2563eb;
    color: white;
}

.about {
    padding: 100px 9%;
}

.about-title {
    text-align: center;
    position: relative;
    margin-bottom: 70px;
}

.about-title h2 {
    font-size: 4rem;
    color: #5b0fc5;
    font-family: 'Montserrat', sans-serif;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex-shrink: 0;
}

.about-img img {
    width: 400px;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.4);
    animation: floatImage 4s ease-in-out infinite;
}

.about-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(230, 18, 188, 0.6);
}

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

.about-content {
    flex: 1;
}

.about-content h3 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #e606aa;
}

.about-content p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: #334155;
}

.about-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
}

.info-column p {
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.about-info a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-info a:hover {
    color: #7c3aed;
    text-decoration: underline;
    padding-left: 5px;
}

.about-info p i {
    color: #2563eb;
    font-size: 2rem;
    margin-right: 10px;
    vertical-align: middle;
}

.triumph {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
    padding: 10rem 9%;
}

.triumph-content {
    flex: 1;
}

.triumph-content h2 {
    font-size: 5rem;
    text-align: center;
    font-weight: 800;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    margin-bottom: 40px;
}

.achievement-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.5);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    gap: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), 0 0 20px rgba(37, 99, 235, 0.2);
    transition: 0.4s ease;
}

.achievement-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px #2563eb, 0 0 40px #2563eb, 0 0 60px #7c3aed;
}

.achievement-content {
    flex: 1;
}

.achievement-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.achievement-content p {
    font-size: 1.7rem;
    line-height: 1.6;
}

.achievement-img {
    flex-shrink: 0;
}

.achievement-img img {
    width: 100%;
    max-width: 550px;
    height: auto;
    max-height: 370px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
    transition: 0.3s ease;
}

.achievement-img img:hover {
    transform: scale(1.05);
}

.skills {
    padding: 100px 9%;
    background: #0f172a;
    color: white;
}

.skills-heading {
    text-align: center;
    font-size: 5rem;
    margin-bottom: 60px;
}

.skills-heading span {
    color: #00e5ff;
}

.skills-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.technical-skills,
.professional-skills {
    flex: 1;
}

.technical-skills h3,
.professional-skills h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.technical-skills h3::after,
.professional-skills h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: #00e5ff;
    box-shadow: 0 0 10px #00e5ff;
    transition: 0.4s ease;
}

.technical-skills h3:hover::after,
.professional-skills h3:hover::after {
    width: 100%;
}

.bar {
    margin-bottom: 25px;
    position: relative;
}

.bar span {
    font-size: 1.6rem;
    font-weight: 600;
    color: #dbeafe;
}

.bar span i {
    font-size: 2rem;
    margin-right: 8px;
    vertical-align: middle;
}

.progress {
    width: 100%;
    height: 10px;
    background: #111;
    border-radius: 20px;
    margin-top: 10px;
    overflow: visible;
}

.progress div {
    height: 100%;
    border-radius: 20px;
    position: relative;
    transform: scaleX(0);
    transform-origin: left center;
    animation: growBar 2s ease-out forwards;
}

@keyframes growBar {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.html { width: 90%; background: #e34f26; }
.css { width: 85%; background: #2965f1; }
.js { width: 80%; background: #f7df1e; }
.c { width: 95%; background: #00599c; }
.cpp { width: 87%; background: #004482; }
.java { width: 90%; background: #e63946; }
.python { width: 95%; background: #2ecc71; }
.machine-learning { width: 82%; background: #8b5cf6; }
.deep-learning { width: 70%; background: #ec4899; }

.progress div span {
    position: absolute;
    right: 0;
    top: -32px;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

.circle-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-items: center;
}

.circle {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.outer {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    --progress: 324deg;
    background: conic-gradient(#00e5ff var(--angle), #111 0deg);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fillCircle 2s ease forwards;
    transition: 0.3s ease;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes fillCircle {
    from { --angle: 0deg; }
    to { --angle: var(--progress); }
}

.creativity { --progress: 324deg; }
.communication { --progress: 306deg; }
.problem-solving { --progress: 324deg; }
.teamwork { --progress: 342deg; }
.leadership { --progress: 342deg; }

.circle:hover .outer {
    transform: scale(1.1);
    box-shadow: 0 0 15px #00e5ff, 0 0 30px #00e5ff, 0 0 45px #00e5ff;
}

.inner {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.circle p {
    text-align: center;
    margin-top: 15px;
    font-size: 1.6rem;
    transition: 0.3s ease;
}

.circle:hover p {
    color: #00e5ff;
    letter-spacing: 1px;
}

.bxl-html5 { color: #e34f26; }
.bxl-css3 { color: #2965f1; }
.bxl-javascript { color: #f7df1e; }
.bxl-java { color: #e63946; }
.bxl-python { color: #2ecc71; }
.bx-code-alt { color: #00599c; }
.bx-code-block { color: #004482; }
.bx-brain { color: #8b5cf6; }
.bx-network-chart { color: #ec4899; }

.projects {
    min-height: 100vh;
    padding: 100px 9%;
    background: #dbeafe;
}

.heading {
    text-align: center;
    font-size: 5rem;
    font-weight: 800;
    position: relative;
    width: fit-content;
    margin: 0 auto 60px;
}

.heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #00e5ff, #2563eb, #00e5ff);
    border-radius: 10px;
    transform: translateX(-50%);
    transition: width 0.5s ease;
}

.heading:hover::after {
    width: 100%;
}

.heading span {
    color: #2563eb;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.project-card {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.project-layer {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    padding: 20px;
    background: linear-gradient(transparent, rgba(37, 99, 235, 0.9));
    color: white;
    transform: translateY(100%);
    transition: 0.5s ease;
    opacity: 0;
}

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

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

.project-layer h4 {
    margin-top: auto;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
}

.project-layer p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.project-layer a {
    align-self: center;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    background: linear-gradient(135deg, #00e5ff, #2563eb);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

.project-layer a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #00e5ff, 0 0 40px #00e5ff, 0 0 60px #2563eb;
}

.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    background: linear-gradient(135deg, #00e5ff, #2563eb);
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5), 0 0 30px rgba(37, 99, 235, 0.4);
}

.view-btn i {
    font-size: 2rem;
}

.view-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 20px #00e5ff, 0 0 40px #00e5ff, 0 0 60px #2563eb;
}

.contact {
    min-height: 100vh;
    padding: 100px 9%;
    background: #0f172a;
}

.contact-heading {
    text-align: center;
    font-size: 5rem;
    color: white;
    margin-bottom: 50px;
}

.contact-heading span {
    color: #00e5ff;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    background: #111827;
    border: 2px solid #1e293b;
    border-radius: 12px;
    color: white;
    font-size: 1.6rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00e5ff;
    box-shadow: 0 0 15px #00e5ff55;
    outline: none;
}

.send-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #2563eb, #00e5ff);
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #00e5ff;
}

.contact-info {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.info-box {
    text-align: center;
    padding: 25px;
    background: #111827;
    border-radius: 15px;
    transition: 0.3s;
    overflow: hidden;
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #00e5ff55;
}

.info-box i {
    font-size: 4rem;
    color: #00e5ff;
    margin-bottom: 15px;
}

.info-box h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 1.4rem;
    color: rgb(255, 255, 255);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
}

.info-box a {
    color: #00e5ff;
    font-size: 1.4rem;
    text-decoration: none;
    word-break: break-word;
    transition: 0.3s;
}

.info-box a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.feedback {
    padding: 100px 9%;
    background: radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.18), transparent 25%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.18), transparent 25%),
                #ffffff;
}

.feedback-heading {
    text-align: center;
    font-size: 5rem;
    margin-bottom: 50px;
    color: #3e02ca;
    transition: 0.4s ease;
    cursor: pointer;
}

.feedback-heading:hover {
    transform: scale(1.05);
}

.feedback-heading span {
    color: #00e5ff;
}

.feedback-form {
    max-width: 700px;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    background: #111827;
    border: 2px solid #00e5ff;
    box-shadow: 0 0 20px rgba(0, 229, 255, .4);
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #dbeafe;
    border-radius: 10px;
    font-size: 1.6rem;
    outline: none;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    border-color: #00e5ff;
    box-shadow: 0 0 10px rgba(225, 211, 5, 0.3);
}

.rating {
    text-align: center;
    margin: 20px 0;
}

.star {
    font-size: 3rem;
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

.star:hover {
    transform: scale(1.2);
}

.star.active {
    color: gold;
}

.feedback-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #00e5ff;
    color: #0f172a;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.feedback-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px #00e5ff;
}

.support {
    padding: 100px 9%;
    background: #f8fafc;
}

.support-heading {
    text-align: center;
    font-size: 5rem;
    margin-bottom: 60px;
    color: #0f172a;
}

.support-heading span {
    color: #00e5ff;
}

.support-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.support-card {
    width: 320px;
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.support-card i {
    font-size: 5rem;
    color: #00e5ff;
    margin-bottom: 15px;
}

.support-card h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.support-card p {
    font-size: 1.5rem;
    color: #555;
    cursor: pointer;
    transition: 0.4s ease;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px #00e5ff, 0 0 30px rgba(0, 229, 255, 0.3);
}

.footer {
    background: #0f172a;
    padding: 50px 9%;
    text-align: center;
    position: relative;
}

.footer h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: #00e5ff;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-decoration: none;
    transition: 0.4s;
}

.footer-social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #00e5ff;
}

.footer p {
    color: #dbeafe;
    font-size: 1.5rem;
    margin: 8px 0;
}

.credit span {
    color: #00e5ff;
    font-weight: 600;
}

.top-btn {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: #00e5ff;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 2rem;
    transition: 0.4s;
}

.top-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #00e5ff;
}


@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }

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

@media (max-width: 991px) {
    .header {
        padding: 2rem 4%;
    }

    section {
        padding: 10rem 4% 2rem;
    }

    .home {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        padding-top: 15rem;
    }

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

    .home-img {
        width: 28rem;
        height: 28rem;
    }

    .btn-group {
        justify-content: center;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-info {
        flex-direction: column;
        text-align: left;
    }

    .skills-container {
        flex-direction: column;
        gap: 50px;
    }

    .achievement-box {
        flex-direction: column;
        text-align: center;
    }

    .achievement-img img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 4%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        display: none;
        flex-direction: column;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 1.5rem 0;
        color: #ffffff;
    }

    .navbar a.active {
        border-bottom: none;
    }

    .heading,
    .skills-heading,
    .contact-heading,
    .feedback-heading,
    .support-heading,
    .triumph-content h2 {
        font-size: 3.5rem;
    }

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

    .circle-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feedback-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 50%;
    }

    .home-img {
        width: 22rem;
        height: 22rem;
    }

    .circle-container {
        grid-template-columns: 1fr;
    }

    .social-media a {
        margin: 2rem 0.8rem;
    }
}
.top-btn {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    background: #00e5ff;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 2.5rem;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}


.top-btn.show {
    opacity: 1;
    pointer-events: auto;
}

.top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 25px #00e5ff;
}

@media (max-width: 480px) {
    .top-btn {
        right: 2rem;
        bottom: 2rem;
        width: 4.5rem;
        height: 4.5rem;
        font-size: 2.2rem;
    }
}

