@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

:root {
    --primary-color: #5a9bd4; /* Light blue */
    --secondary-color: #003366; /* Dark blue */
    --extra-light: #1a1a1a; /* Dark gray for backgrounds */
    --white: #ffffff; /* Keep white for text or accents */
    --gradient-1: linear-gradient(
        to bottom right,
        #000000,
        #1a1a1a
    ); /* Black gradient */
    --gradient-2: linear-gradient(
        to bottom,
        #003366,
        #5a9bd4
    ); /* Blue gradient */
    --animeLayer: linear-gradient(#fff, #fff);
}

::-webkit-scrollbar {
    display: none;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
/* Button Styling */
.btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(
        135deg,
        #00aaff,
        #0077cc
    ); /* Gradient background */
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 170, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    outline: none;
    text-align: center;
}

.btn:hover {
    background: linear-gradient(135deg, #0077cc, #00aaff);
    box-shadow: 0 12px 20px rgba(0, 170, 255, 0.7);
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 6px 12px rgba(0, 170, 255, 0.4);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.topButton {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 40px;
    height: 40px;

    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;

    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.topButton.show {
    opacity: 1;
    visibility: visible;
}

.topButton:active {
    transform: translateY(-2px); /* Slightly reduced lift effect on click */
    box-shadow: 0 8px 15px rgba(0, 170, 255, 0.4); /* Reset shadow when pressed */
}

.topButton i {
    pointer-events: none; /* Disable pointer events on the icon */
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    cursor: url("./images/macbook\ 1.png"), auto; /* URL to your custom image */
}

.cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease, background-color 0.2s ease,
        box-shadow 0.2s ease;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(13, 30, 46, 0.764) 0%,
        rgba(78, 29, 29, 0.776) 80%
    );
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
}

/* Cursor hover effect */
.cursor.hovered {
    background: radial-gradient(
        circle,
        rgba(123, 11, 11, 0.788) 0%,
        rgba(46, 20, 20, 0.785) 80%
    );
    border-color: var(--primary-color);
    transform: scale(1.4); /* Slightly increase size */
    box-shadow: 0 0 25px var(--primary-color);
    z-index: 9999999; /* Glow effect */
}

/* Pulsing animation for cursor */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Apply animation */
.cursor {
    animation: pulse 2s infinite;
}

body {
    font-family: "Nunito", sans-serif;
    color: var(--white);
    background-image: var(--gradient-1);
    width: 100%;
    min-height: 100vh;

    margin: 0 auto;

    /* cursor: none; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}
li {
    font-family: cursive, sans-serif;
}
p {
    font-family: "Lato", sans-serif;
}
input {
    font-family: "Nunito", sans-serif;
}
input::placeholder,
textarea::placeholder {
    font-family: cursive, "Nunito", sans-serif;
}
/* General navigation styling */
/* Navigation Bar */
nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ensure items are vertically centered */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
    box-shadow: none;
    padding: 0 2rem; /* Add padding for spacing */
    padding-block: 5px;
}

/* Scrolled State */
nav.scrolled {
    background-color: rgba(
        0,
        0,
        0,
        0.9
    ); /* Darker shade of black for scrolled state */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); /* Softer shadow for a subtle lift */
    transition: box-shadow 0.3s ease, background-color 0.3s ease; /* Smooth transition */
}

/* Logo Container */

.nav-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-logo,
.buttonn {
    opacity: 0;
    position: relative;
    left: 0; /* For .nav-logo */
    right: 0; /* For .buttonn */
}
.logo-letter {
    /* Choose a clean, modern font */
    font-size: 3rem; /* Adjust size to make it prominent */
    font-weight: 700; /* Bold for a stronger presence */
    color: var(
        --primary-color
    ); /* Choose a color that fits your theme, e.g., light blue */
    position: relative;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow for a 3D effect */
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

/* Add hover effect */
.logo-letter:hover {
    color: var(--secondary-color); /* Change to another accent color on hover */
    transform: scale(1.2); /* Slight scaling on hover */
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Enhance shadow effect on hover */
}

/* Optional: Style for the small text below */
.nav-logo h5 {
    font-size: 1rem;
    color: var(--white); /* Or any other color to match your theme */
    margin-top: 0.5rem;
}

/* Navigation Links */
/* Navigation Links */
/* Menu visibility toggle */
.ul-list {
    display: flex;
    gap: 1.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
    opacity: 1; /* Visible by default */
    transform: translateY(0); /* Slide in from top */
}
.nav-logo,
.buttonn {
    position: relative;
    opacity: 0;
}

.nav-logo {
    left: -100px; /* Adjust as needed */
}

.buttonn {
    right: -100px; /* Adjust as needed */
}

.ul-list.visibility {
    opacity: 0; /* Hide menu items */
    transform: translateY(-20px); /* Slide out of view */
    pointer-events: none; /* Prevent interaction when hidden */
}

.ul-list li a {
    color: var(--white); /* Link color */
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth color transition */
}

.ul-list li a:hover {
    color: var(--primary-color); /* Light blue on hover */
}

/* Button Container */
.buttonn {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Menu Button Icon */
.menuBtn {
    background: none;
    border: none;
    color: var(--white); /* Adjusted for consistency */
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.menuBtn:hover {
    color: var(--primary-color); /* Light blue on hover */
}

/* GitHub Icon */
.gitIcon i {
    color: var(--white); /* Consistent with theme */
    font-size: 1.5rem;
}
.gitIcon:hover i {
    color: var(--primary-color);
}
/* Contact Button */
.contactbtn {
    background-color: var(--primary-color); /* Light blue background */
    border: none;
    color: var(--white); /* White text */
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5rem; /* Rounded corners */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    animation: pulse2 3s infinite ease;
}

@keyframes pulse2 {
    0% {
        transform: scale(1);
        font-size: small;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        font-size: small;
    }
}

.contactbtn:hover {
    background-color: var(--secondary-color); /* Darker blue on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Shadow on hover for emphasis */
}

.contactbtn a {
    color: var(--white); /* Ensure link text is white */
    text-decoration: none;
}
.menuBtn {
    display: none;
}

/* hero-sec */

#home {
    padding-top: 0.1vw;
}
.hero-sec {
    width: 100%;
    max-width: var(--max-width);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15vw auto 0;
    padding: 0 5vw;
    position: relative;
}
.left-content {
    display: flex;
    align-items: center;

    position: relative;
    width: 100%;
}
.left-text h1 {
    margin-bottom: 1rem;
    font-size: 6rem;
    letter-spacing: -5px;
    width: 100%;
    margin-top: -5vw;
    animation: headermovetop 1.2s forwards ease;
    opacity: 0;
}

.left-text h1 span {
    background: var(--animeLayer);
    background-repeat: no-repeat;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-size: 0%;
}

.left-text h1 span:first-child {
    animation: anime1 3s linear infinite alternate;
}
.left-text h1 span:nth-child(3) {
    animation: anime2 3s linear infinite alternate;
}
.left-text h1 span:last-child {
    animation: anime3 3s linear infinite alternate;
}
@keyframes headermovetop {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes anime1 {
    0% {
        background-size: 0%;
    }
    25% {
        background-size: 100%;
    }
    40% {
        background-size: 100%;
    }
    75% {
        background-size: 100%;
    }
    100% {
        background-size: 100%;
    }
}
@keyframes anime2 {
    0% {
        background-size: 0%;
    }
    25% {
        background-size: 0%;
    }
    40% {
        background-size: 100%;
    }
    75% {
        background-size: 100%;
    }
    100% {
        background-size: 100%;
    }
}
@keyframes anime3 {
    0% {
        background-size: 0%;
    }
    25% {
        background-size: 0%;
    }
    40% {
        background-size: 0%;
    }
    75% {
        background-size: 100%;
    }
    100% {
        background-size: 100%;
    }
}

.left-text p {
    font-size: 1rem;
    line-height: 1.3rem;
    animation: headermoveside 1.2s forwards ease;
    animation-delay: 1s;
    opacity: 0;
}
@keyframes headermoveside {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.left-text button {
    padding: 1vw 4vw;
    margin-top: 1vw;
    animation: headermovee 1.2s forwards ease;
    animation-delay: 1s;
    opacity: 0;
}
@keyframes headermovee {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.middle-img {
    position: absolute;
    left: 0;
    right: 0;
    z-index: -99;
    animation: movement 1s infinite alternate;
}
.middle-img img {
    max-width: 100%;
    height: auto;
    opacity: 0.3;
    filter: blur(4px); /* Optional: Add blur effect */
    border-radius: 10px;
}
@keyframes movement {
    0% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0px);
    }
}

.right-name {
    display: flex;
    align-items: center;
    justify-content: center;
}
.right-name h1 {
    position: absolute;
    right: 16vw;
    transform: rotate(90deg);
    text-align: right;
    font-size: 1rem;
    height: 100%;
    color: var(--white);
    opacity: 0.3;
    font-weight: 500;
    letter-spacing: 0.6vw;
}

/* About-Sec */
/* About Section Styles */
#about {
    padding-top: 8vw;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.about-left-content {
    flex: 1;
    position: relative;
}

.img-box {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 80%;
    max-width: 350px;
    border-radius: 15px;
    transition: transform 0.5s ease;
    z-index: 50;
}

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

/* Optional: background image animations for a layered effect */
.bg1,
.bg2 {
    position: absolute;
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.bg1 {
    top: -40px;
    left: -25px;
    width: 100px;
}

.bg2 {
    top: 150px;
    right: -30px;
    width: 120px;
}

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

.about-right-cont {
    flex: 1;
}

.right-text h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--primary-color); /* Light blue accent color */
    margin-bottom: 20px;
}

.section__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ddd;
}

.btn.about__btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.1rem;
    background: linear-gradient(
        135deg,
        #00bcd4,
        #4e6fff
    ); /* Light blue to gradient */
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Education */
#education {
    width: 100%;
    padding: 8vw 0;
}

.education-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2vw;
}

.education-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.education-item {
    background-image: var(--gradient-2);
    filter: drop-shadow(0 0 60px rgba(59, 130, 246, 0.2));
    color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-item:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.education-item-content {
    padding: 2rem;
}

.education-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.year {
    font-size: 1.2rem;
    color: var(--white);
}

.degree {
    font-size: 1.3rem;
    color: var(--white);
}

.major,
.gpa,
.institution {
    font-size: 1rem;

    margin: 0.5rem 0;
}

.certificate {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.certificate:hover {
    background-color: #0056b3;
}

/* Projects*/
.portfolio-section {
    max-width: 1200px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    padding-top: 8vw;
}

.line {
    width: 2px;
    background-color: #00aaff;
    position: absolute;
    top: 7.5%;
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%);
}

/* Title Line and Marker */

/* Line connecting marker and image */
.project-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5rem;
    position: relative;
}

/* Marker */
.project-card .project-marker {
    width: 15px;
    height: 15px;
    background-color: #00aaff;
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.project-image {
    position: relative;
    display: flex;
    align-items: center;
}
.project-image-reverse img {
    max-width: 400px;
    filter: drop-shadow(0 0 60px rgba(59, 130, 246, 0.6));
    transition: transform 0.3s ease;
}

.project-image img {
    max-width: 400px;
    filter: drop-shadow(0 0 60px rgba(59, 130, 246, 0.6));
    transition: transform 0.3s ease;
}

/* Add a similar line for normal layout images */
.project-image::before {
    content: "";
    position: absolute;
    top: 50%; /* Align vertically to the middle */
    left: 90%; /* Start the line from the right edge of the image */
    width: 50%; /* Adjust width as needed */
    height: 2px;
    background-color: #00aaff;
    z-index: 5;
    transform: translateY(-50%);
    /* Ensure the line stays vertically centered */
}

.project-image-reverse {
    position: relative;
    display: flex;
    align-items: center;
}

.project-image-reverse::before {
    content: "";
    position: absolute;
    top: 50%; /* Align vertically to the middle */
    right: 100%;
    left: -40%; /* Start the line from the left edge of the image */
    width: 50%; /* Adjust width as needed */
    height: 2px;
    background-color: #00aaff;
    z-index: 5;
    transform: translateY(-50%); /* Ensure the line stays vertically centered */
}

.project-image-wrapper {
    position: relative;
    display: inline-block;
}

.tooltip-link {
    opacity: 0;
    position: absolute;
    bottom: 100%; /* Position above the image */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    text-decoration: none;
    z-index: 10;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center; /* Align the icon and text */
    gap: 0.5rem; /* Space between icon and text */
}

.tooltip-link i {
    color: #00aaff; /* Icon color */
}

.project-image-wrapper:hover .tooltip-link {
    display: flex; /* Show tooltip when hovering over the image */
    opacity: 1;
    transform: translate(-50%, -10px); /* Slightly move upwards */
}
/* Line between projects */
.project-card:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 2px;
    top: 50px;
    bottom: 50px;
    background-color: #00aaff;
    transform: translateX(-50%);
}

/* Flexbox reverse for alternate layout */
.reverse-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse; /* Flip the order: Image on the left, text on the right */
    margin-bottom: 5rem;
    position: relative;
}

/* Project Image Styling */
.project-image img {
    max-width: 400px;
    filter: drop-shadow(0 0 60px rgba(59, 130, 246, 0.6));

    transition: transform 0.3s ease;
}

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

/* Project Details */
.project-details {
    max-width: 500px;
    text-align: left;
}

.project-details h3 {
    font-size: 2.5rem;
    color: #00aaff;
}

.project-details span {
    display: block;
    color: #00aaff;
    margin-bottom: 1rem;
}

.project-details p {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 1rem;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Spacing between logos */
    list-style: none;
    padding: 0;
}

.tech-stack li {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: var(--gradient-1);
    /* Dark background for each logo card */
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.6),
        0 6px 20px rgba(59, 130, 246, 0.4);
    filter: drop-shadow(0 0 60px rgba(10, 30, 246, 0.1));

    transition: transform 0.3s ease, background-color 0.3s ease;
}

.tech-stack li:hover {
    background-image: var(--gradient-2);
    transform: translateY(-5px);
    /* Slight lift effect on hover */
}

.tech-stack img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* New Features */

.project-features {
    margin-top: 1.5rem;
}

.project-features h4 {
    font-size: 1.5rem;
    color: #00aaff;
    margin-bottom: 0.6rem;
}

.project-features ul {
    list-style-type: disc;
    margin-left: 20px; /* Indent the list */
}

.project-features ul li {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.end-ine {
    text-align: center;
    color: #00aaff;
}
.Project-github {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

/* Skills */

.skills-section {
    padding: 8vw 0 0 0;

    color: var(--white);
    text-align: center;
}

.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.skill-card {
    background-image: var(--gradient-1);
    border-radius: 15px;
    padding: 20px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.6),
        0 6px 20px rgba(59, 130, 246, 0.4);
    filter: drop-shadow(0 0 60px rgba(10, 30, 246, 0.1));
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-15px);
}

.skill-circle {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.progress-svg {
    transform: rotate(-90deg);
}

.progress-circle {
    stroke-dasharray: 440; /* Circle circumference */
    stroke-dashoffset: 200; /* Adjust this value for visibility */
    transition: stroke-dashoffset 1.5s ease;
}

.skill-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgb(235, 233, 241));
    z-index: 10;
    transition: transform 0.3s ease;
}

.skill-card:hover .skill-logo {
    transform: translate(-50%, -50%) scale(1.2);
}

.percentage {
    font-size: 1.2rem;
    color: var(--white);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 440;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* contact-sec */

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    background-color: #111; /* Background color for the section */
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h1 {
    color: #00aaff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-header p {
    color: #ddd;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.social-icon {
    margin-bottom: 30px;
}

.social-icon a {
    margin: 0 15px;
    font-size: 1.8rem;
    color: #00aaff;
    transition: transform 0.3s ease, color 0.3s ease !important;
    filter: drop-shadow(0 0 60px rgba(10, 30, 246, 0.1));
}

.social-icon a:hover {
    color: #ffffff;
    transform: scale(1.2) !important;
}

.contact-frm {
    max-width: 600px;
    width: 100%;
}

.contact-frm input,
.contact-frm textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    font-weight: 400;

    color: var(--primary-color);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-frm input::placeholder,
.contact-frm textarea::placeholder {
    opacity: 0.5;
}

.contact-frm input:focus,
.contact-frm textarea:focus {
    border-color: #00aaff;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.5); /* Add focus shadow for better feedback */
}

.contact-frm textarea {
    height: 120px;
    display: block;
    resize: none;
}

.contact-frm .btn {
    width: 100%;
    padding: 15px;
    background-color: #00aaff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#result {
    margin-block: 20px;
    color: #00ff88;
    font-size: 1rem;
    text-align: center; /* Center the result message */
}

footer {
    text-align: center;
    background-color: #181818; /* Dark background */
    padding: 1rem 0;
    color: #ccc; /* Soft text color */
    font-size: 0.9rem;
    font-family: "Arial", sans-serif;
}

footer p {
    margin: 0;
}

footer p a {
    color: #00aaff;
    text-decoration: none;
}

footer p a:hover {
    text-decoration: underline;
}
