* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --blue: #60a5fa;
    --indigo: #8b5cf6;
    --red: #ef4444;
    --dark-red: #7f1d1d;
    --orange: #f59e0b;
    --deep-orange: #78350f;
    --green: #10b981;
    --teal-dark: #064e3b;
    --teal: #065f46;
    --gray-border: #334155;
    --gray-dark: black;
    --gray-deeper: #1e293b;
    --gray-darker: #0f172a;
    --slate-900: #0f0f0f;
    --slate-800: #1c1c1c;
    --primary: #f3f03d;
    --secondary: #4ecdc4;
    --accent: #45b7d1;
    --gold: #ffd93d;
    --dark: #0a0a0a;
    --darker: #000000;
    --gray: #1a1a1a;
    --light-gray: #333333;
    --white: #ffffff;
    --text-light: #e0e0e0;
    --gradient-primary: linear-gradient(135deg, #e60b0b, #3342ec);
    --gradient-secondary: linear-gradient(135deg, #45b7d1, #ffd93d);
    --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a1a, #000000);
    --gradient-anni1: linear-gradient(135deg, #e60b0b, #de4040, #e89595);
    --gradient-anni2: linear-gradient(135deg, #3342ec, #5c68ec, #9299ec);
    --gradient-anni3: linear-gradient(135deg, #b105b1, #b227b2, #c168c1);
    --gradient-anni4: linear-gradient(135deg, #fed01a, #fddb56, #feea99);
}
html,
body {
    max-width: 100vw;
}

body {
    background-image: url(https://www.pixel4k.com/wp-content/uploads/2018/10/dark-blue-green-gradient-4k_1540755527.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.allcontent {
    position: relative;
    top: 50px;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: linear-gradient(to left, rgba(0, 255, 234, 0.8), rgba(0, 6, 10, 0.652));
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 30px;
    height: 30px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 25px;
    height: 25px;
    top: 20%;
    left: 80%;
    animation-delay: 2s;
}

.NOTE {
    color: white;
}

.particle:nth-child(3) {
    width: 20px;
    height: 20px;
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 20px;
    height: 20px;
    top: 80%;
    left: 70%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    width: 22px;
    height: 22px;
    top: 40%;
    left: 90%;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    width: 20px;
    height: 20px;
    top: 70%;
    left: 5%;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    width: 35px;
    height: 35px;
    top: 80%;
    right: 2%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

.sect {
    text-align: center;
    padding: 4rem 2rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.sect h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    text-shadow: 0px 0px 20px rgb(70, 204, 188);
    color: white;
}

.subtitle {
    font-size: clamp(1rem, 2.5rem, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.sect1 {
    max-width: 1200px;
    margin: 0px auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.experience {
    backdrop-filter: blur(20px);
    width: 90%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.725);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.5s ease-out;
}

.experience {
    animation-delay: 0.1s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.experience::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: left 0.8s;
}

.experience:hover::before {
    left: 50%;
}

.experience:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.det {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.profile {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0px 0px 20px whitesmoke;
    transition: transform 0.3s ease;
}

.profile:hover {
    transform: scale(1.1) rotate(5deg);
}

.profile::after {
    content: "🎓";
    font-size: 1.5rem;
}

.name-section {
    flex-grow: 1;
}

.name {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.2rem;
}

.graduation-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.likes {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.like,
.dislike {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
}

.like:hover {
    border-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.3);
    transform: scale(1.05);
}

.dislike:hover {
    border-color: #747d88;
    background-color: rgba(116, 125, 136, 0.3);
    transform: scale(1.05);
}

#heartIcon {
    font-size: 24px;
    color: grey;
    cursor: pointer;
    transition: color 0.3s;
}

#heartIcon.liked {
    color: red;
}

.like.liked {
    background: rgba(255, 107, 107, 0.3);
    border-color: #ff6b6b;
}

.dislike.disliked {
    background: rgba(116, 125, 136, 0.3);
    border-color: #617082;
}

.like i,
.dislike i {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.like.liked i {
    color: #ff6b6b;
    animation: heartbeat 0.6s ease-in-out;
}

.dislike .disliked i {
    color: #657487;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.lc,
.dislike span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    min-width: 15px;
    text-align: center;
}

.details {
    color: rgba(255, 255, 255, 0.9);
}

.job-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.company-tag,
.salary-tag {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
}

.company-tag {
    background: rgba(79, 172, 254, 0.2);
    border-color: #4facfe;
}

.salary-tag {
    background: rgba(254, 202, 87, 0.2);
    border-color: #feca57;
    color: #feca57;
}

.exp {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.quote {
    font-family: "Dancing Script", cursive;
    font-size: 1.1rem;
    font-style: italic;
    color: gold;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-left: 4px solid #4facfe;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -5px;
    left: 10px;
}

.sect2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    padding: 50px 0px;
}

.heading {
    color: white;
    font-size: clamp(1.2rem, 3vw, 4rem);
    font-weight: bold;
}

.subtitle1 {
    color: whitesmoke;
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.input-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    box-shadow: 0px 0px 0px 1px rgb(22, 171, 151);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 15px;
}

.label,
.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

label {
    font-size: 1rem;
    font-weight: bold;
    color: white;
}

input {
    width: 18rem;
    height: 2.5rem;
    border-radius: 8px;
    padding: 10px 20px;
    background-color: rgba(128, 128, 128, 0.5);
    color: white;
    border: none;
}

input::placeholder,
textarea::placeholder {
    color: rgba(245, 245, 245, 0.7);
    font-size: 1rem;
    padding: 10px 10px;
}

textarea {
    width: 20rem;
    height: 10rem;
    background-color: rgba(128, 128, 128, 0.5);
    color: white;
    border-radius: 10px;
    border: none;
    font-size: 18px;
}

input,
textarea {
    width: 100%;
    max-width: 20rem;
}

button {
    padding: 10px 20px;
    border-radius: 10px;
    background-color: rgb(24, 138, 209);
    color: white;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s linear;
    cursor: pointer;
}

button:hover {
    background-color: black;
}

#clearAll {
    border-radius: 50%;
    padding: 0px;
    background-color: black;
}

.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2e2525;
    color: #fff;
    border: 2px solid #444;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.custom-alert button {
    margin-top: 10px;
    padding: 8px 10px;
    background: #6a9ed5c1;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.actions {
    margin-top: 10px;
}

.actions button {
    padding: 5px 10px;
    margin-right: 10px;
    border: none;
    background: #333;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.actions button:hover {
    background: #555;
}

/* Header Styles */
/* Demo content styles */
@media (max-width: 992px) {
    .navbar .nav-menu {
        display: none;
    }

    .mobile-menu .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .hamburger {
        display: block;
        color: white;
    }
}

@media (max-width: 768px) {
    .sect1 {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .experience {
        padding: 1.5rem;
    }

    .profile {
        width: 50px;
        height: 50px;
    }

    .name {
        font-size: 1.1rem;
    }

    .likes {
        flex-direction: column;
        gap: 0.5rem;
    }

    .job-info {
        justify-content: center;
    }

    .NOTE {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sect {
        padding: 2rem 1rem;
    }

    .sect1 {
        grid-template-columns: 1fr;
    }

    .det {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .likes {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .job-info {
        justify-content: center;
        align-items: center;
    }

    form {
        display: flex;
        flex-direction: column;
    }

    .NOTE {
        text-align: center;
    }
}
.header1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
    z-index: 1000;
    transition: all 0.0s ease;
    animation: slideDown 0.8s ease 0.2s forwards;
    opacity: 0;
}

.header1:hover {
    background: rgba(10, 10, 10, 1);
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite 2.5s;
}

.logo:hover {
    transform: scale(1.1);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    top: 8px;
    left: 8px;
    animation: orb1 4s ease-in-out infinite 2.5s;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    bottom: 10px;
    right: 10px;
    animation: orb2 4s ease-in-out infinite 2.5s;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes orb1 {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.2) translate(5px, 5px);
    }
}

@keyframes orb2 {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(0.8) translate(-3px, -3px);
    }
}

/* Navigation Styles */
.nav-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
    position: relative;

}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-2px) rotate(5deg);
    border-bottom: 1px solid white;
}

.profile-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-btn a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.profile-btn:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.dropdown-arrow {
    transition: transform 0.4s ease;
    font-size: 1.2rem;
}

.profile-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg) scale(1.2);
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    right: 1%;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.9));
    border: 2px solid rgba(233, 69, 96, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    padding: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 5px;
    border: 2px solid transparent;
    text-decoration: none;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2), rgba(83, 52, 131, 0.1));
    color: #ffffff;
    transform: translateX(8px) scale(1.02);
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.2);
}

.dropdown-item a {
    text-decoration: none;
    color: white;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 35px;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--white);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
    transform-origin: left center;
}

.hamburger span:nth-child(2) {
    top: 10px;
    transform-origin: left center;
}

.hamburger span:nth-child(3) {
    top: 20px;
    transform-origin: left center;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: -1px;
    left: 4px;
}

.hamburger.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 21px;
    left: 4px;
}

.close-menu {
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
}

.close-menu:hover {
    color: var(--gradient-primary);
    transform: rotate(90deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 80px 30px 30px;
    transition: right 0.3s ease-in-out;
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-menu {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.mobile-menu .nav-link {
    font-size: 1.2rem;
    padding: 10px 15px;
    display: block;
    width: 100%;
}

.mobile-menu .profile-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animation Keyframes */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar .nav-menu {
        display: none;
    }

    .mobile-menu .nav-menu {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .nav-content {
        gap: 10px;
    }

    .profile-dropdown {
        display: block;
    }

    .profile-btn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 70px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-comm {
        flex-direction: column;
        align-items: center;
    }

    .hero-comm1,
    .learnmore {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .features,
    .testimonials,
    .benefits {
        padding: 3rem 1rem;
    }

    .feature-card,
    .benefit-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .mobile-menu {
        width: 85%;
    }

    .profile-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .feature-title,
    .benefit-title {
        font-size: 1.3rem;
    }
}

footer {
    background: var(--gradient-dark);
    padding: 3rem 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-radius: 20px;
    color: red;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link svg {
    fill: var(--text-light);
    width: 100%;
    height: 100%;
    transition: fill 0.3s;
}

.social-link:hover svg {
    fill: var(--white);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-input {
    background: var(--light-gray);
    border: 1px solid rgba(255, 107, 107, 0.2);
    padding: 0.5rem;
    border-radius: 4px 0 0 4px;
    color: var(--white);
    flex: 1;
}

.newsletter-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0 4px 4px 0;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.3s;
}

.newsletter-btn:hover {
    transform: scale(1.05);
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 107, 107, 0.1);
}

/* Added: Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}