:root {
    --primary-color: #e67e22;
    --secondary-color: #16a085;
    --bg-color: #f0f2f5;
    --text-white: #fff;
    --text-dark: #333;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --accent-color: #27ae60;
    --bg-gradient: radial-gradient(at 71.12151183488437% 54.49010901662934%, hsla(60, 3.571428571428607%, 89.01960784313725%, 1) 0%, hsla(60, 3.571428571428607%, 89.01960784313725%, 0) 100%), radial-gradient(at 25.77102254986128% 26.097334705255037%, hsla(210, 19.999999999999993%, 82.35294117647058%, 1) 0%, hsla(210, 19.999999999999993%, 82.35294117647058%, 0) 100%), radial-gradient(at 62.588643099336316% 69.18538038851676%, hsla(209.01098901098902, 36.54618473895582%, 51.17647058823529%, 1) 0%, hsla(209.01098901098902, 36.54618473895582%, 51.17647058823529%, 0) 100%), radial-gradient(at 8.665518083845548% 64.72163988836739%, hsla(210.5084745762712, 26.94063926940639%, 42.94117647058823%, 1) 0%, hsla(210.5084745762712, 26.94063926940639%, 42.94117647058823%, 0) 100%), radial-gradient(at 20.644787265576014% 75.97364090869748%, hsla(225.00000000000003, 12.12121212121212%, 74.11764705882354%, 1) 0%, hsla(225.00000000000003, 12.12121212121212%, 74.11764705882354%, 0) 100%), radial-gradient(at 38.33421275075695% 16.766296873151454%, hsla(60, 3.571428571428607%, 89.01960784313725%, 1) 0%, hsla(60, 3.571428571428607%, 89.01960784313725%, 0) 100%), radial-gradient(at 18.128336778437347% 75.2157681526756%, hsla(210, 19.999999999999993%, 82.35294117647058%, 1) 0%, hsla(210, 19.999999999999993%, 82.35294117647058%, 0) 100%), radial-gradient(at 11.396458904894624% 93.21603787250746%, hsla(209.01098901098902, 36.54618473895582%, 51.17647058823529%, 1) 0%, hsla(209.01098901098902, 36.54618473895582%, 51.17647058823529%, 0) 100%), radial-gradient(at 99.89313175192972% 36.46272644513893%, hsla(210.5084745762712, 26.94063926940639%, 42.94117647058823%, 1) 0%, hsla(210.5084745762712, 26.94063926940639%, 42.94117647058823%, 0) 100%), radial-gradient(at 46.94691245970903% 72.41349028103336%, hsla(225.00000000000003, 12.12121212121212%, 74.11764705882354%, 1) 0%, hsla(225.00000000000003, 12.12121212121212%, 74.11764705882354%, 0) 100%), radial-gradient(at 16.521386635953906% 29.139402106384594%, hsla(60, 3.571428571428607%, 89.01960784313725%, 1) 0%, hsla(60, 3.571428571428607%, 89.01960784313725%, 0) 100%), radial-gradient(at 0.5899299171732597% 44.10994186524611%, hsla(210, 19.999999999999993%, 82.35294117647058%, 1) 0%, hsla(210, 19.999999999999993%, 82.35294117647058%, 0) 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 56px;
    background-color: var(--bg-color);
    color: var(--text-dark);
}

.hindi {
    font-family: 'Hind', sans-serif;
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

/* ==================== NAVIGATION SECTION CSS ==================== */

.navbar {
    background-color: var(--bg-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--bg-color) !important;
    backdrop-filter: blur(5px);
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-brand img:hover {
    transform: rotate(5deg) scale(1.05);
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    animation: underline 0.3s ease forwards;
}

@keyframes underline {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.lang-btn {
    border: none;
    background: transparent;
    font-weight: 600;
    padding: 5px 10px;
    margin-left: 10px;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.lang-btn:not(.active):hover {
    background-color: #f0f0f0;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    left: 0;
    transition: var(--transition);
}

.navbar-toggler-icon::before {
    transform: translateY(-6px);
}

.navbar-toggler-icon::after {
    transform: translateY(6px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
}

/* Mobile specific styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: var(--shadow-md);
        margin-top: 15px;
    }

    .navbar-nav {
        align-items: center;
        text-align: center;
    }

    .nav-item {
        margin: 10px 0;
    }

    .nav-link {
        margin: 0;
        padding: 8px 0;
    }

    .d-flex {
        justify-content: center;
        margin-top: 15px;
    }

    .navbar-brand img {
        width: 70px;
        height: 70px;
    }
}

.lang-hidden {
    display: none !important;
}

.language-hi .en-content {
    display: none !important;
}

.language-hi .hi-content {
    display: block !important;
}

/* ==================== SCROLL TO TOP CSS ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.scroll-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== ABOUT US CSS ==================== */
.about-section {
    background-color: var(--bg-color);
    padding: 6rem 0;
    margin-bottom: 30px;
}

.feature-box {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    transition: var(--transition);
    background: var(--text-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-color);
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.language-toggle {
    margin-bottom: 30px;
    text-align: right;
}

.toggle-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.toggle-btn:hover,
.toggle-btn.active {
    background: var(--primary-color);
    color: var(--text-white);
}


.feature-content p {
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.feature-content p:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-img {
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    width: 100%;
    transition: transform 0.5s ease;
}

.feature-box:hover .feature-img {
    transform: scale(1.03);
}

.img-container {
    overflow: hidden;
    border-radius: 8px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Language Content */
.lang-content {
    transition: opacity 0.3s ease;
}

.lang-hidden {
    display: none;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.scroll-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* VISSON */
.text-title {
    font-size: 25px;
    font-weight: 600;
    color: var(--secondary-color);
}

.text-icon {
    color: var(--primary-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
}

.counter-box {
    background: var(--text-white);
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 700;
}

/* ==================== FOOTER SECTION CSS==================== */
/* Footer Styles */
footer {
    background-color: #1a1a1a;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.qr-code-container {
    transition: transform 0.3s ease;
}

.qr-code-container:hover {
    transform: scale(1.05);
}



/* Animation delays for footer columns */
.animate-delay-1 {
    transition-delay: 0.2s;
}

.animate-delay-2 {
    transition-delay: 0.4s;
}


/* Add these styles to your existing CSS */
footer {
    background-color: #1a1a1a;
    position: relative;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.qr-code-container {
    transition: transform 0.3s ease;
}

.qr-code-container:hover {
    transform: scale(1.05);
}

.developer-credit {
    font-size: 0.8rem;
    color: #6c757d !important;
}

.developer-credit a {
    color: #6c757d !important;
    text-decoration: none;
}

.developer-credit a:hover {
    color: var(--primary-color) !important;
}