/* पूरी वेबसाइट का बैकग्राउंड कलर */
body {
    overflow-x: hidden;
    background-color: #04142c; 
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; 
}

*{padding: 0; margin: 0; box-sizing: border-box;}

header{
	width: 100%;
	background: url('img/large-crowd.jpeg');
	background-size: cover;
	background-position: center;  
	display:flex;
	flex-direction: column;
	position: relative;
	color: white;
}

.overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.9);
}



nav {
    width: 100%;
    min-height: 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
}


.logo{
	font-size: 2.5em;
	color: orange;
    gap: 10px;
}

.logo .spin-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    animation: 10s anim linear infinite; 
}

.menu a{
	text-decoration: none;
	color: white;
	padding: 10px 15px;
	margin: 0 3px;
	font-size: 16px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    }

    
.menu a:hover {
    transform: translateY(5px);
    color: orange;
}

.menu a:first-child{
	color: orange;
	border-top: 1px solid orange;
	border-radius: 8px;
}

.menu a:last-child{
	color: orange;
	border-top: 1px solid orange;
	border-radius: 8px;
}

.menu i{
	font-size: 25px;
	padding: 0 2px;
}

.container{
	width: 100%;
	flex-grow: 1;
	padding: 40px 0 40px 0; 
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: sticky;
	z-index: 2;
}

.left{
	flex-basis: 45%;
}

.right{
	flex-basis: 35%;
}

.right img{
	width: 100%;
	animation: 10s anim linear infinite;
}

.left h1{
	font-size: 3em;
}

#del{
	color: orange;
}

.left p{
	margin: 15px 0;
	line-height: 1.9rem;
}

.left a{
	text-decoration: none;
	color: white;
	background: orange;
	padding: 10px 20px;
	border-radius: 50% 0 50% 0;
}

@keyframes anim{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}

/* फुटर की मुख्य स्टाइलिंग */
.main-footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px 0;
    font-family: sans-serif;
    margin-top: 0;
}

/* कंटेनर ग्रिड */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

/* हर कॉलम की स्टाइलिंग */
.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffb703;
    position: relative;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

/* लिंक्स की स्टाइलिंग */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #ffb703;
    padding-left: 5px;
}

/* सोशल मीडिया आइकन्स */
.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    background: #444;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ffb703;
    color: #222;
    transform: translateY(-3px);
}

/* कॉपीराइट बार */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #aaa;
}

/* मिशन और विजन सेक्शन की स्टाइलिंग */
.mission-vision-section {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
}

/* दोनों कार्ड्स की कॉमन स्टाइलिंग */
.mv-card {
    flex: 1;
    background: #ffffff; /* साफ़ सफेद बैकग्राउंड */
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* हल्का सा शैडो */
    text-align: center;
    border-top: 4px solid #ffb703; /* आपके फुटर थीम से मैच करता हुआ गोल्डन बॉर्डर */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* होवर इफ़ेक्ट - कर्सर ले जाने पर कार्ड थोड़ा ऊपर उठेगा */
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* आइकन्स की स्टाइलिंग */
.mv-icon {
    font-size: 40px;
    color: #ffb703;
    margin-bottom: 15px;
}

.mv-card h2 {
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}

.mv-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    text-align: justify; /* टेक्स्ट को दोनों तरफ से बराबर रखने के लिए */
}

/* डिफ़ॉल्ट रूप से मोबाइल बटन छुपा रहेगा */
.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

/* डिफ़ॉल्ट रूप से मोबाइल बटन छुपा रहेगा (Desktop View) */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: orange;
    background: none;
    border: none;
    cursor: pointer;
}

/* मोबाइल और टैबलेट स्क्रीन के लिए बदलाव (Media Query) */
/* 768px की जगह 991px करें ताकि टैबलेट पर भी मेनू सही से काम करे */
@media (max-width: 991px) {
    nav {
        justify-content: space-between;
        padding: 10px 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        position: absolute;
        top: 70px; /* 100px की जगह 70px करें ताकि मेनू बार के ठीक नीचे खुले */
        left: 0;
        z-index: 999;
    }
    
    .menu.show {
        display: flex;
    }
    
    .menu a {
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid #333;
        margin: 0;
        border-radius: 0;
    }
    
    .menu a:first-child, .menu a:last-child {
        border-top: none;
        border-radius: 0;
    }

    .container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .left, .right {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    .left h1 {
        font-size: 2.2em;
    }

    .mission-vision-section {
        flex-direction: column;
        padding: 0 20px;
    }
}

/* About Us Section CSS */
.about-section {
    padding: 100px 20px 60px 20px; /* ऊपर से जगह छोड़ी है ताकि मेनू बार के नीचे न छिप जाए */
    }

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* इमेज पर खूबसूरत शैडो */
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.03); /* माउस ले जाने पर इमेज हल्की सी ज़ूम होगी */
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 35px;
    color: #fdfcfc;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: #ffb703; /* आपका गोल्डन/ऑरेंज कलर */
}

.about-content p {
    font-size: 16px;
    color: #fdfcfc;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ffb703;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 30px;
    transition: 0.3s;
    font-weight: bold;
}

.about-btn:hover {
    background: #222; /* माउस ले जाने पर डार्क कलर */
    color: #ffb703;
}


.team-card h3{
    font-size: 25px;
    color: #fdfcfc;
    margin-bottom: 5px;
}

.team-section h2{
    font-size: 25px;
    color: orange;
    margin-bottom: 5px;
}

.team-header p{
    color: white;

}

.team-card h4{
    font-size: 16px;
    color: #f08ed7;
    margin-bottom: 5px;
}

.team-card p{
    font-size: 14px;
    color: #f08ed7;
    margin-bottom: 5px;
}

.main-things-section {
    padding: 10px 20px 50px 20px;
    text-align: center;
    margin-left: 5px;
}

.cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.thing-card {
    background: white;
    padding: 30px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.thing-card i {
    font-size: 40px;
    color: orange;
    margin-bottom: 20px;
}

.photo-gallery-container{
    display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
}

.photo-card {
    width: 250px;
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 0.4s;
    cursor: pointer;
}

.photo-box {
    position: relative;
}

.photo-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.5s;
}

/* फोटो पर होवर इफ़ेक्ट */
.photo-card:hover img {
    transform: scale(1.1); /* माउस ले जाने पर फोटो ज़ूम होगी */
}

/* ओवरले टेक्स्ट */
.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    text-align: center;
    transition: 0.4s;
}

.photo-card:hover .overlay-text {
    padding-bottom: 30px;
}

/* लाइटबॉक्स (पॉपअप) की स्टाइलिंग */
.lightbox {
    display: none; /* शुरुआत में यह छिपा रहेगा */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* बैकग्राउंड को काला और पारदर्शी बनाने के लिए */
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: 0.3s;
}

/* क्लोज बटन */
.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: orange;
}

/* नेक्स्ट और प्रीवियस (Next/Prev) बटन */
.prev-btn, .next-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    background-color: rgba(0,0,0,0.5);
    border: none;
    border-radius: 5px;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(0,0,0,0.8);
    color: orange;
}

/* =========================================
   Video Gallery Styling 
========================================= */
.video-gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    margin-bottom: 50px;
}

.video-card {
    width: 250px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* शानदार परछाईं */
    transition: 0.4s;
}

/* माउस ले जाने पर कार्ड थोड़ा ऊपर उठेगा */
.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.video-box {
    width: 100%;
    height: 200px;
    background-color: #000;
}

/* YouTube या Local Video दोनों की सेटिंग */
.video-box iframe, 
.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 4px solid orange; /* वीडियो के नीचे एक सुंदर ऑरेंज लाइन */
}

.video-info {
    padding: 20px;
    text-align: center;
}

.video-info h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
    color: #333;
}

.video-info p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
}

/* =========================================
   Contact Page Styling 
========================================= */
.contact-header {
    text-align: center;
    margin-top: 100px;
    padding: 0 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto 50px auto;
}

/* दोनों बॉक्स (Info और Form) का डिज़ाइन */
.contact-info-box, .contact-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 320px;
}

.contact-info-box h3, .contact-form-box h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    border-bottom: 2px solid orange;
    display: inline-block;
    padding-bottom: 5px;
}

/* संपर्क जानकारी के आइकॉन और टेक्स्ट */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: orange;
    background: #fff3e0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 20px;
}

.info-item h4 {
    margin: 0 0 5px;
    color: #333;
}

.info-item p {
    margin: 0;
    color: #666;
}

/* सोशल मीडिया आइकॉन */
.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: orange;
    transform: translateY(-5px);
}

/* फॉर्म का डिज़ाइन */
.input-group {
    margin-bottom: 20px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: orange;
    outline: none;
    box-shadow: 0 0 8px rgba(255, 165, 0, 0.3);
}

/* सबमिट बटन */
.submit-btn {
    background: orange;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #e69500;
    box-shadow: 0 5px 15px rgba(230, 149, 0, 0.4);
}

/* ऊपर जाने वाले बटन की स्टाइलिंग */
#scrollToTopBtn {
    display: none; /* शुरुआत में यह छिपा रहेगा */
    position: fixed;
    bottom: 30px;   /* नीचे से दूरी */
    right: 30px;    /* दाहिने कोने से दूरी */
    z-index: 99;    /* ताकि यह सब चीज़ों के ऊपर दिखे */
    border: none;
    outline: none;
    background-color: orange; /* आपकी BKS थीम का ऑरेंज कलर */
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%; /* बटन को गोल करने के लिए */
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

/* माउस ले जाने पर (Hover Effect) */
#scrollToTopBtn:hover {
    background-color: #e69500; /* थोड़ा गहरा ऑरेंज */
    transform: translateY(-5px); /* हल्का सा ऊपर उठेगा */
}