: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;
}


/* ==================== SERVICE SECTION CSS ==================== */

.service-section {
    background-color: var(--bg-color);
    padding: 6rem 0;
}

.section-header {
    position: relative;
    margin-bottom: 3rem;
}


.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1rem auto 0;
}

.service-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 1.5rem auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
}

.service-icon i {
    font-size: 1.5rem;
    color: rgba(103, 101, 101, 0.696);
}

.service-card :hover .service-icon i {
    font-size: 2.0rem;
    color: var(--primary-color);
}

.service-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card :hover .service-title {
    /* font-size: 1.8rem; */
    color: var(--secondary-color);
}

.service-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    padding: 0 0.5rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.feature-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-dark);
}


@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.8rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin: 1rem auto;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .feature-list li {
        font-size: 0.85rem;
    }
}

/* ==================== 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;
}