/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ededed;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1f1f1f;
}

::-webkit-scrollbar-thumb {
    background: #00abf0;
    border-radius: 10px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.3s ease;
}

.logo {
    font-size: 2.6rem;
    color: #ededed;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo span {
    color: #00abf0;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 25px #00abf0;
}

.navbar a {
    font-size: 1.7rem;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 4rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar a:hover,
.navbar a.active {
    color: #00abf0;
}

.navbar a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00abf0;
    transition: width 0.3s ease;
}

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

#menu-icon {
    font-size: 3.6rem;
    color: #ededed;
    cursor: pointer;
    display: none;
}

/* Home Section */
.home {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 0 9%;
}

.home-content {
    max-width: 60rem;
}

.home-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease;
}

.home-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00abf0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s ease 0.2s both;
}

.home-content h3:nth-of-type(2) {
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease 0.4s both;
}

.typing-text {
    color: #00abf0;
    font-weight: 600;
}

.home-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    animation: slideInLeft 1s ease 0.6s both;
}

.social-media {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    animation: slideInUp 1s ease 0.8s both;
}

.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: 2px solid #00abf0;
    border-radius: 50%;
    font-size: 2rem;
    color: #00abf0;
    text-decoration: none;
    transition: all 0.5s ease;
}

.social-media a:hover {
    background: #00abf0;
    color: #081b29;
    transform: scale(1.3) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 171, 240, 0.4);
}

.btn-group {
    display: flex;
    gap: 2rem;
    animation: slideInUp 1s ease 1s both;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: #00abf0;
    border-radius: 4rem;
    font-size: 1.6rem;
    color: #081b29;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn:hover {
    box-shadow: 0 0 25px #00abf0;
    transform: translateY(-3px);
}

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

.btn-secondary:hover {
    background: #00abf0;
    color: #081b29;
}

.home-img {
    position: relative;
    animation: slideInRight 1s ease 0.5s both;
}

.profile-img {
    width: 35rem;
    height: 35rem;
    border-radius: 50%;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #00abf0, #ff6b6b, #4ecdc4, #45b7d1, #00abf0) border-box;
    box-shadow: 
        0 0 50px rgba(0, 171, 240, 0.6),
        0 0 100px rgba(255, 107, 107, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    object-fit: cover;
    position: relative;
    animation: profileGlow 3s ease-in-out infinite alternate;
}

.profile-img:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 
        0 0 80px rgba(0, 171, 240, 0.9),
        0 0 150px rgba(255, 107, 107, 0.5),
        0 0 200px rgba(78, 205, 196, 0.4),
        inset 0 0 50px rgba(255, 255, 255, 0.2);
    animation-play-state: paused;
}

@keyframes profileGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(0, 171, 240, 0.6),
            0 0 60px rgba(255, 107, 107, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 60px rgba(0, 171, 240, 0.8),
            0 0 120px rgba(255, 107, 107, 0.5),
            0 0 180px rgba(78, 205, 196, 0.3),
            inset 0 0 40px rgba(255, 255, 255, 0.2);
    }
}

/* Profile Container with Special Effects */
.profile-container {
    position: relative;
    display: inline-block;
}

/* Special Animated Background Behind Profile Picture */
.profile-background {
    position: absolute;
    width: 45rem;
    height: 45rem;
    top: -5rem;
    left: -5rem;
    border-radius: 50%;
    overflow: hidden;
    z-index: -1;
    opacity: 0.3;
}

/* Animated Gradient Backgrounds */
.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: rotateGradient 8s linear infinite;
}

.gradient-1 {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    animation-duration: 15s;
}

.gradient-2 {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
    animation-duration: 20s;
    animation-direction: reverse;
    opacity: 0.7;
}

.gradient-3 {
    background: linear-gradient(225deg, #00c9ff, #92fe9d, #fa709a, #fee140);
    animation-duration: 25s;
    opacity: 0.5;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Floating Geometric Shapes */
.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.shape-1 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: 15%;
    left: 20%;
    animation: floatShape 4s ease-in-out infinite;
}

.shape-2 {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    top: 70%;
    right: 25%;
    animation: floatShape 3s ease-in-out infinite 1s;
}

.shape-3 {
    width: 50px;
    height: 50px;
    border-radius: 20px;
    bottom: 30%;
    left: 15%;
    animation: floatShape 3.5s ease-in-out infinite 2s;
    transform: rotate(45deg);
}

.shape-4 {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    top: 40%;
    right: 15%;
    animation: floatShape 4.5s ease-in-out infinite 0.5s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.7;
    }
}

/* Tech Icons Background */
.tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.4;
    animation: floatIcon 5s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: 25%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 20%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 35%;
    left: 15%;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 20%;
    right: 30%;
    animation-delay: 3s;
}

.icon-5 {
    top: 60%;
    left: 10%;
    animation-delay: 4s;
}

.icon-6 {
    top: 80%;
    right: 15%;
    animation-delay: 0.5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-25px) scale(1.2);
        opacity: 0.8;
    }
}

/* Animated Rings */
.animated-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: rotateRing 4s linear infinite;
}

.ring-1 {
    width: 40rem;
    height: 40rem;
    top: -2.5rem;
    left: -2.5rem;
    border-top: 3px solid #00abf0;
    border-right: 3px solid transparent;
    animation-duration: 8s;
}

.ring-2 {
    width: 45rem;
    height: 45rem;
    top: -5rem;
    left: -5rem;
    border-bottom: 2px solid #ff6b6b;
    border-left: 2px solid transparent;
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring-3 {
    width: 50rem;
    height: 50rem;
    top: -7.5rem;
    left: -7.5rem;
    border-right: 2px solid #4ecdc4;
    border-top: 2px solid transparent;
    animation-duration: 15s;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #00abf0, #ff6b6b);
    border-radius: 50%;
    opacity: 0.7;
}

.particle-1 {
    top: 10%;
    left: 20%;
    animation: floatParticle 3s ease-in-out infinite;
}

.particle-2 {
    top: 30%;
    right: 15%;
    animation: floatParticle 2.5s ease-in-out infinite 0.5s;
}

.particle-3 {
    bottom: 20%;
    left: 10%;
    animation: floatParticle 3.5s ease-in-out infinite 1s;
}

.particle-4 {
    bottom: 40%;
    right: 20%;
    animation: floatParticle 2.8s ease-in-out infinite 1.5s;
}

.particle-5 {
    top: 60%;
    left: 5%;
    animation: floatParticle 3.2s ease-in-out infinite 2s;
}

.particle-6 {
    top: 80%;
    right: 10%;
    animation: floatParticle 2.3s ease-in-out infinite 0.8s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

.img-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00abf0, #0f3460);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 171, 240, 0.5);
}

/* About Section */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background: #081b29;
    padding: 10rem 9% 5rem;
    min-height: 100vh;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 35rem;
    height: 35rem;
    border-radius: 50%;
    border: 3px solid #00abf0;
    object-fit: cover;
    box-shadow: 0 0 50px rgba(0, 171, 240, 0.3);
}

.about-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00abf0, #0f3460);
    border-radius: 20px;
    animation: float 4s ease-in-out infinite reverse;
}

.about-content {
    max-width: 60rem;
}

.heading {
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.heading span {
    color: #00abf0;
}

.about-content h3 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    color: #00abf0;
}

.about-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    background: rgba(0, 171, 240, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 171, 240, 0.3);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 171, 240, 0.2);
}

.info-item h4 {
    font-size: 1.8rem;
    color: #00abf0;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.4rem;
    margin: 0;
}

/* Skills Section */
.skills {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10rem 9% 5rem;
    min-height: 100vh;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    margin-top: 5rem;
}

.skills-column {
    background: rgba(8, 27, 41, 0.8);
    padding: 3rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 171, 240, 0.3);
    transition: all 0.3s ease;
}

.skills-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 171, 240, 0.3);
}

.title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #00abf0;
}

.skill-item {
    margin-bottom: 2rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-info span {
    font-size: 1.6rem;
    font-weight: 500;
}

.skill-bar {
    width: 100%;
    height: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #00abf0, #0f3460);
    border-radius: 1rem;
    width: 0;
    transition: width 2s ease;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    background-size: 50px 50px;
    animation: move 2s linear infinite;
}

/* Projects Section */
.projects {
    background: #081b29;
    padding: 10rem 9% 5rem;
    min-height: 100vh;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.project-card {
    background: rgba(0, 171, 240, 0.05);
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(0, 171, 240, 0.3);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 171, 240, 0.3);
}

.project-card img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.project-card iframe {
    width: 100%;
    height: 25rem;
    border: none;
    border-radius: 2rem 2rem 0 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.project-card:hover iframe {
    transform: scale(1.02);
}

.project-content {
    padding: 3rem;
}

.project-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #00abf0;
}

.project-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.project-tech span {
    background: rgba(0, 171, 240, 0.2);
    color: #00abf0;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.btn-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid #00abf0;
    color: #00abf0;
    text-decoration: none;
    border-radius: 2rem;
    font-size: 1.3rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: #00abf0;
    color: #081b29;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10rem 9% 5rem;
    min-height: 100vh;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    margin-top: 5rem;
}

.contact-info h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #00abf0;
}

.contact-info p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(8, 27, 41, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 171, 240, 0.2);
}

.contact-item i {
    font-size: 2.4rem;
    color: #00abf0;
    min-width: 3rem;
}

.contact-item h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #00abf0;
}

.contact-item p {
    font-size: 1.4rem;
    margin: 0;
}

.email-link {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #00abf0 !important;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(0, 171, 240, 0.1);
    border: 2px solid #00abf0;
    border-radius: 50%;
    font-size: 2rem;
    color: #00abf0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00abf0;
    color: #081b29;
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 171, 240, 0.4);
}

.contact-form {
    background: rgba(8, 27, 41, 0.3);
    padding: 3rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 171, 240, 0.3);
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: #ededed;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 171, 240, 0.3);
    border-radius: 1rem;
    outline: none;
    resize: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00abf0;
    box-shadow: 0 0 20px rgba(0, 171, 240, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(237, 237, 237, 0.6);
}

/* Footer */
.footer {
    background: #081b29;
    padding: 3rem 9%;
    border-top: 1px solid rgba(0, 171, 240, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-content p {
    font-size: 1.4rem;
    color: rgba(237, 237, 237, 0.8);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    font-size: 1.4rem;
    color: rgba(237, 237, 237, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00abf0;
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
    
    .home,
    .about {
        gap: 5rem;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 2rem 3%;
    }
    
    section {
        padding: 10rem 3% 2rem;
    }
    
    .home,
    .about {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .skills-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .projects-container {
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }
    
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        border-top: 0.1rem solid rgba(0, 171, 240, 0.3);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
        display: none;
    }
    
    .navbar.active {
        display: block;
    }
    
    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        color: #ededed;
    }
    
    .home-content h1 {
        font-size: 4.5rem;
    }
    
    .about-info {
        grid-template-columns: 1fr;
    }
    
    .input-group {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 617px) {
    .home-content h1 {
        font-size: 4rem;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
}