body {
    font-family: Arial, sans-serif;
}
        
        :root {
            --royal-blue: #0b1d3b;
            --gold: #d4af37;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --orange: #FF8C00; /* Optional Highlight */
            --text-dark: #1a1a1a;
        }

            /* ALL IMAGES SAFE */
            img {
                max-width: 100%;
                height: auto;
                display: block;
            }

            /* HERO IMAGE FIX */
            .hero-img {
                width: 150px;
                max-width: 100%;
                height: auto;
                display: block;
                margin: 0 auto 20px;   /* center fix */
                border-radius: 50%;
                border: 2px solid var(--gold);
            }

            /* ABOUT IMAGE FIX */
            .about-image img {
                width: 100%;
                max-width: 300px;
                height: auto;
                margin: 0 auto;
                display: block;
            }

            /* CARD IMAGE FIX */
            .card img {
                width: 70px;
                margin: 0 auto 15px;
            }

            /* MOBILE FIX */
           @media (max-width: 768px) {

                .hero-img {
                    width: 90px;
                    margin: 0 auto 15px;
                }

                .hero {
                    padding: 60px 15px;
                }
            }        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; color: var(--text-dark); line-height: 1.6; }
        .menu-toggle {
            display: none;
            font-size: 22px;
            color: white;
            cursor: pointer;
        }
        /* NAVBAR - Royal Blue */
        nav {
            background: var(--royal-blue);
            padding: 15px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--gold);
        }
        nav img { height: 50px; border-radius: 40%; border: 2px solid var(--gold); }
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            margin-left: 25px;
            font-size: 0.9rem;
            text-transform: uppercase;
            font-weight: 600;
            transition: 0.3s;
        }
        .nav-links a:hover { color: var(--orange); }

        /* HERO SECTION - Royal Blue + Gold Text */
        .hero {
            background: var(--royal-blue);
            min-height: 60vh;
            padding: 80px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            gap: 20px;
            border-bottom: 5px solid var(--gold);
        }
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--gold) !important;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .hero p {
            color: var(--white);
            font-size: 1rem;
            max-width: 800px;
            font-weight: 300;
            margin-bottom: 30px;
        }

        /* BUTTONS - Gold */
        .btn-gold {
            background: var(--gold);
            color: var(--royal-blue);
            padding: 10px 25px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 4px;
            transition: 0.3s;
            display: inline-block;
            border: 2px solid var(--gold);
        }
        .btn-gold:hover {
            background: transparent;
            color: var(--gold);
        }

        /* BODY SECTIONS - White/Grey */
        section { padding: 100px 10%; }
        .section-white { background: var(--white); }
        .section-grey { background: var(--light-grey); }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--royal-blue);
            margin-bottom: 40px;
            position: relative;
        }
        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--gold);
            margin-top: 10px;
        }

        /* ABOUT GRID */
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            align-items: center;
        }
        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 20px 20px 0 var(--royal-blue);
            border: 2px solid var(--gold);
        }
        .bio-info {
            background: var(--light-grey);
            padding: 30px;
            border-left: 5px solid var(--gold);
            margin-top: 20px;
        }
        .bio-info p { margin-bottom: 10px; font-size: 1.1rem; }
        .bio-info strong { color: var(--royal-blue); }

        /* BUSINESS CARDS */
        .business-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        .card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #ddd;
            transition: 0.3s;
        }
        .card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .card img { height: 70px; margin-bottom: 20px; }
        .card h3 { color: var(--royal-blue); margin-bottom: 10px; }
        .card .icon-tag { color: var(--orange); font-size: 2rem; margin-bottom: 15px; }

        /* FOOTER - Royal Blue */
        footer {
            background: var(--royal-blue);
            color: var(--white);
            padding: 60px 10% 20px;
            text-align: center;
        }
        .footer-logo { height: 60px; margin-bottom: 20px; }
        .footer-links a {
            color: var(--gold);
            text-decoration: none;
            margin: 0 15px;
            font-size: 0.9rem;
        }
        .footer-links a:hover { color: var(--orange); }

        /* LOGO SLIDER */
        /* THE SCROLLING ENGINE */
    /* Logo Slider */
        .slider-box { padding: 40px 0; background: #fff; overflow: hidden; border-top: 1px solid #ddd; }
        .slider-track { display: flex; width: calc(250px * 20); animation: scroll 25s linear infinite; }
        .slider-track img { width: 150px; margin: 0 40px; opacity: 0.6; filter: grayscale(100%); transition: 0.3s; }
        .slider-track img:hover { opacity: 1; filter: grayscale(0%); }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-250px * 10)); } }


/* ================= SOCIAL ================= */
.social-section {
    background: var(--white);
    color: #fff;
    padding: 80px 0px;
}

.social-section h2 {
    font-size: 2.5rem;
}

.social-section span {
    color: #1e90ff;
}

.social-section p {
    color: #aaa;
    margin: 15px 0 40px;
    text-align: center;
}

/* ICONS */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* COLORS */
.fb { background: #1877f2; }
.insta { background: #e1306c; }
.linkedin { background: #0077b5; }
.twitter { background: #000; border: 1px solid #fff; }
.youtube { background: #ff0000; }
.google { background: #ea4335; }

/* ================= FOOTER ================= */
.footer {
    background: #0b1d3b;
    color: #fff;
    padding: 50px 10%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-box h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.footer-box p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #ccc;
}

.footer-box a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-box a:hover {
    color: #ff8c00;
}

/* COPYRIGHT */
.footer-bottom {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #444;
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
    
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

    nav {
        position: relative;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #0b1d3b;
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }
}
@media (max-width: 768px) {

    .about-container {
        display: flex;
        flex-direction: column;   /* column force */
        align-items: center;
    }

    .about-image {
        width: 100%;
        text-align: center;
    }

    .about-image img {
        width: 80%;
        max-width: 220px;
        margin: 20px auto;
        display: block;
        box-shadow: none;   /* remove side shadow */
    }

    .about-content {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 768px) {

    .about-image img {
        width: 70% !important;
        max-width: 200px !important;
        margin: 20px auto !important;
        display: block;
    }

}
.contact-link {
    text-decoration: none;   /* removes underline */
    color: inherit;          /* keeps normal text color */
    cursor: pointer;
}

.contact-link:hover {
    color: #c5a47e; /* optional gold hover effect */
}/* HERO BACKGROUND */
.politics-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('img/bhartiya-janshakti-foundation-logo.jpeg') center/cover no-repeat;
    
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    text-align: center;
    color: #fff;
}
