html{
    scroll-behavior:smooth
}

.jumbotron
    {
        padding:1rem 2rem;color:#8a3303;background-color:rgba(0,0,0,0); margin-bottom:15px;
}

body {
    font-family: "Open Sans";
    font-weight: 300;
    color: #501c00;
    overflow-x: hidden; /* क्षैतिज स्क्रोल टाळण्यासाठी */
    scroll-behavior: smooth; /* स्मूथ स्क्रोलिंगसाठी */

}

.navbar-nav .nav-link {
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;   
}
.navbar-nav .nav-link:hover {
    background-color: #f48551da;
    color: #0434f2;
    font-weight: bold;
}
.one_cat {
    margin-bottom: 20px;
}
.cat-box {
    border: 1px solid #b00707;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.cat-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(241, 6, 6, 0.1);
}
.neon-button {
    border: 2px solid #00ff00;
    border-radius: 5px;
    padding: 10px 20px;
    color: #00ff00;
    text-decoration: none;
    transition: 0.3s;
}
.neon-button:hover {
    background-color: #00ff00;
    color: #000;
}
        /* Center the menu and make it responsive */
        .menu-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0px;
        }
        
        .menu-container a {
            color: white;
            text-decoration: none;
            margin: 0 20px;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.5s ease;
        }
        /* Hover effect for changing text color */
.menu-container a:hover {
    color: #ff6347; /* Tomato color */
    transform: scale(1.1);
}

/* Adding multiple colors on hover (using keyframes animation) */
@keyframes colorChange {
    0% {color: #ff6347; /* Tomato */}
    25% {     color: #32cd32; /* Lime Green */}
    50% {        color: #1e90ff; /* Dodger Blue */    }
    75% {        color: #ffff00; /* Yellow */    }
    100% {        color: #ff6347; /* Tomato */    }
}

/* Apply the animation when hovering */
.menu-container a:hover {
    animation: colorChange 2s infinite;
}

/* heading text color Paragraphs*/
.jumbotron bhead {
    color: rgb(0, 95, 93);
    font-size: 15px;
    font-weight: bold;

}
/* Gallery from here Section Styling */

/* Modern Gallery */
.gallery {
    padding: 50px 0;
    background: linear-gradient(135deg, #fff8f0, #f5faff);
}

.gallery-grid {
    column-count: 3;
    column-gap: 15px;
}

.gallery-item {
    position: relative;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: attr(data-title);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Responsive Masonry */
@media (max-width: 1024px) {
    .gallery-grid { column-count: 2; }
}
@media (max-width: 600px) {
    .gallery-grid { column-count: 1; }
}

/* End of Gallery Section Styling */

/* End of Stylesheet */




/* 🌸 Categories (Cards) */
.cat-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-align: center;
}
.cat-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.cat-box p {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #d32f2f;
    text-shadow: 2px 2px 4px #ffcdd2;
}




/* Navbar Dark Bold Links */
.nav-link.nav-bold {
    color: #fff !important;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}
.nav-link.nav-bold:hover {
    color: #ff0000 !important;
    text-shadow: 0 0 8px #ff6600dd;
}

/* Glowing Title */
.glowing-text {
    color: #c20a00;
    font-weight: bold;
    text-shadow: 0 0 5px #ffe173, 0 0 15px #ff7519, 0 0 25px #e108f1;
    animation: glow 2s infinite alternate;
}
@keyframes glow {
    from { text-shadow: 0 0 5px #ffe173, 0 0 10px #ff6600; }
    to { text-shadow: 0 0 15px #ce28fc, 0 0 30px #ffd500; }
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #b00707;
    text-shadow: 2px 2px 5px #beb85b;
}

/* Campaign Cards 3D Shadow Effect */
.campaign-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
.campaign-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Card Image Styling */
.campaign-card img {
    border-bottom: 3px solid #ff6600;
}

/* Buttons Shadow */
.btn {
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}



/* ✨ Extra Glow Hover Effect (Desktop + Mobile दोन्हीसाठी) */
.thumbnail-glow {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}
.thumbnail-glow:hover,
.thumbnail-glow:active {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.6);
}




/* Watermark Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://misanatan.com/images/logo.png"); /* PNG फोटो path */
    background-repeat: repeat;
    background-size: 400px; /* किती लहान / मोठा दिसेल ते इथे बदला */
    opacity: 0.03; /* 20% visibility */
    z-index: -1;  /* background मागे राहील */
}


/* Download APK Button with Animation */
.download-apk-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px auto;
}

.download-apk {
     width: 60px;   /* इथे width कमी करा */
    height: 60px;  /* इथे height कमी करा */
    font-size: 15px;
    font-weight: bold;
    color: #ff9900;
    background: linear-gradient(135deg, #dde8eba5, #b9cbc8);
    padding: 7px 10px;
    border-radius: 70px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    animation: pulse 2s infinite;
    text-shadow: 2px 2px 4px #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.3s ease;
}

.download-apk:hover {
    background: linear-gradient(135deg, #f704047a, #ffffff);
    transform: scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
