: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);
}


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #111;
    color: #eee;
    position: relative;
    top: 120px;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    background: #1e1e1e;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 0px 12px 2px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease both;
}

.section-content {
    flex: 1;
    min-width: 250px;
}

.section-content h2 {
    color: #4a90e2;
    font-size: 26px;
    margin-bottom: 10px;
}

.section-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
}

.section img {
    width: 300px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .section {
        flex-direction: column-reverse;
        text-align: left;
    }

    .section img {
        width: 100%;
    }
}

/* Updated Team Section Styles */
.team-section {
    padding: 30px 20px;
    text-align: center;
    background: #1e1e1e;
    border-radius: 12px;
    margin-top: 40px;
}

.team-section h2 {
    color: #4a90e2;
    margin-bottom: 30px;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    width: 220px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #4a90e2;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.card h3 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #fff;
}

.card p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .team {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
    }
}

.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;
    }
}

