* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
    min-height: 100vh;
  
    color: var(--white);
    overflow-x: hidden;

}
: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);
    }

/* Header Styles */
.container {
   
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.95);
    border-radius: 25px;
    padding: 40px;
    padding-top: 100px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInScale 1s ease-out forwards;

}


.header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h1 {
    font-size: 3.5rem;
    color: rgba(63, 140, 221, 0.726);
    font-weight: 800;
    margin-bottom: 10px;
    animation: fadeInDown 0.8s ease-out;
    text-shadow: 0 0 15px rgba(96, 206, 250, 0.4);

}

.subtitle {
    color: var(--white);
    font-size: 1.2rem;

    animation: fadeInUp 0.8s ease-out 0.2s;
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(96, 165, 250, 0);

    }

    100% {
        box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
    }
}

@keyframes liftFade {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.fade-slide-up {
    animation: fadeInUp 0.6s ease-out both;
}

.soft-fade-in {
    animation: liftFade 0.8s ease-out;
}

.glow-hover:hover {
    box-shadow: 0 0 20px var(--accent-glow);
    transform: scale(1.02);
    transition: all 0.3s ease-in-out;
}

.pulse-on-hover:hover {
    animation: pulse 1.2s ease-out;
}

.ripple-btn {
    position: relative;
    overflow: hidden;
}

.ripple-btn:hover::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 300%;
    height: 300%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.15);
    animation: ripple 0.7s linear;
    pointer-events: none;
    z-index: 0;
}


.form-container {
    background: var(--gray-dark);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 25px;
    align-items: start;
}

.input-group {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
}

label i {
    color: var(--blue);
    font-size: 1.2rem;
}

select,
textarea,
input {
    padding: 15px 18px;
    border: 2px solid var(--gray-border);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--gray-darker);
    color: #e5e7eb;
    transition: all 0.3s ease-in-out;
    font-family: inherit;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

select:focus,
textarea:focus,
input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 5px rgba(96, 165, 250, 0.3);
    transform: translateY(-2px);
    background-color: var(--gray-dark);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select:hover,
textarea:hover,
input:hover {
    border-color: var(--blue);
    box-shadow: 0 0 15px var(--accent-glow);
}

.submit-btn,
.btn,
.clear-btn,
.delete-btn,
.clear-answers-btn {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.submit-btn {
    grid-column: 1 / -1;
    background: var(--gradient-primary);
    border-radius: 15px;
    padding: 18px 40px;
    box-shadow: 0 10px 20px rgba(96, 165, 250, 0.3);
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(96, 165, 250, 0.7);
    background: var(--gradient-primary1);
}

.btn {
    background: var(--gradient-primary);
    border-radius: 10px;
    padding: 12px 24px;
    margin-right: 10px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(96, 165, 250, 0.4);
    background: var(--gradient-primary1);
}

.clear-btn {
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.2);
}

.clear-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, var(--dark-red), var(--red));
}

.delete-btn,
.clear-answers-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.delete-btn {
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    box-shadow: 0 3px 10px rgba(239, 68, 68, 0.2);
}

.delete-btn:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.5);
    background: linear-gradient(135deg, var(--dark-red), var(--red));
}

.clear-answers-btn {
    background: linear-gradient(135deg, var(--orange), var(--deep-orange));
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.2);
}

.clear-answers-btn:hover {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, var(--deep-orange), var(--orange));
}

.questions-container {
    animation: slideInRight 0.8s ease-out 0.6s both;
}

.questions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-section label {
    margin: 0;
    font-weight: 500;
    color: var(--white);
}

.filter-section select,
.filter-section input {
    padding: 10px 15px;
    min-width: 150px;
    border-radius: 10px;
    border: 2px solid var(--gray-border);
    font-size: 1rem;
    background: var(--gray-darker);
    color: #e5e7eb;
    transition: all 0.3s ease-in-out;
}

.filter-section input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
}

.question-card {
    background: var(--gray-dark);
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--gray-border);
    animation: fadeInUp 0.5s ease-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.question-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px var(--accent-glow);
    border-color: var(--blue);
}

.question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var("--gray-dark");
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 0;
    border-radius: 18px;
}

.question-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.category-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 3px 10px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.category-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 15px rgba(96, 165, 250, 0.5);
}

.question-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 20px;
    padding: 20px;
    background: var(--gray-darker);
    border-radius: 12px;
    border-left: 5px solid var(--blue);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.question-text:hover {
    border-color: var(--indigo);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4), 0 0 10px rgba(96, 165, 250, 0.2);
}

.answers-section h4 {
    color: var(--text-highlight);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.answer-item {
    background: var(--green);
    color: #d1fae5;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 10px;
    border-left: 5px solid var(--green);
    animation: slideInLeft 0.5s ease-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.answer-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
    border-color: var(--teal);
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.answer-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease-out;
}

.answer-item:hover::after {
    width: 200%;
    height: 200%;
    opacity: 1;
}

.answer-section {
    margin-top: 20px;
    padding: 20px;
    background: var(--gray-darker);
    border-radius: 15px;
    border: 2px dashed var(--gray-border);
    animation: fadeInScale 0.6s ease-out;
}

.answer-input {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
    border: 2px solid var(--gray-border);
    border-radius: 10px;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
    background: var(--gray-darker);
    color: #e5e7eb;
    transition: all 0.3s ease-in-out;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.answer-input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
    background-color: var(--gray-dark);
}


.no-questions {
    text-align: center;
    padding: 60px 20px;
    color: var(--white);
    animation: fadeInUp 0.7s ease-out;
}

.no-questions i {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease-out;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--gray-dark);
    border-radius: 15px;
    min-width: 140px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(96, 165, 250, 0.3);
    border-color: var(--blue);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(96, 165, 250, 0.02), rgba(139, 92, 246, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 0;
    border-radius: 15px;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-item:hover .stat-number {
    transform: translateY(-2px);
    text-shadow: 0 0 15px var(--accent-glow);
}

.stat-label {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container {
        padding-top: 100px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .questions-header {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-section {
        justify-content: center;
    }

    .stats {
        gap: 20px;
    }

    .card-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
}
.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;
    }
}