* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Arial", sans-serif;
            background-color: #000;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: #ccc;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #ff4444;
        }

        .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #ff4444;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* About Page Main Section */
        .about-page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            background-color: #000;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            filter: grayscale(100%) contrast(1.2);
        }

        .about-content {
            padding-left: 2rem;
        }

        .about-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
            line-height: 1.2;
            color: #fff;
        }

        .red-text {
            color: #ff4444;
        }

        .about-text {
            color: #ccc;
            line-height: 1.8;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .about-text .namaste {
            font-weight: bold;
            color: #fff;
            margin-top: 2rem;
        }

        /* Stay Connected Section */
        .stay-connected {
            padding: 4rem 0;
            background-color: #111;
            text-align: center;
        }

        .stay-connected-title {
            font-size: 1.5rem;
            font-weight: bold;
            letter-spacing: 3px;
            margin-bottom: 2rem;
            color: #fff;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            transform: translateY(-3px);
        }

        .social-link.facebook {
            background-color: #3b5998;
        }

        .social-link.twitter {
            background-color: #1da1f2;
        }

        .social-link.youtube {
            background-color: #ff0000;
        }

        .social-link.email {
            background-color: #dd4b39;
        }

        /* Footer */
.footer {
    background-color: #000;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ff4444;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff4444;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: #ff4444;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .about-content {
                padding-left: 0;
            }

            .about-title {
                font-size: 2rem;
            }

            .social-links {
                flex-wrap: wrap;
                gap: 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .footer-profile {
                justify-content: center;
            }
        }

        @media screen and (max-width: 480px) {
            .about-title {
                font-size: 1.5rem;
            }

            .about-text p {
                font-size: 0.9rem;
            }

            .social-link {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
        }

        


    .about-image img {
    box-shadow: 0 0 25px rgba(197, 59, 59, 0.5); /* always-on red glow */
    border-radius: 10px; /* optional: smooth corners */
}



.about-image img:hover {
    box-shadow: 0 0 25px rgba(255, 100, 100, 0.5); /* soft red glow */
    border-radius: 10px; /* optional: soft corner */
}

.social-icons {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
    .footer-social {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
}