* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Noto Sans Oriya', 'Inter', sans-serif;
    overflow-x: hidden;
}
/* header {
    // background: linear-gradient(135deg, #8B3A1B 0%, #C84313 100%);
    background: #FFD700;
    //background: linear-gradient(135deg, #FFD54F, #FFC107);
    background: rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: white;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
} */
header {
    /* background: linear-gradient(135deg, #ffcc02 0%, #c89213 100%); */
    background: linear-gradient(135deg, #FFC30B 0%, #FFBF00 100%);
    /* background: #f12711;
    background: -webkit-linear-gradient(to right, #f5af19, #f12711);
    background: linear-gradient(to right, #f5af19, #f12711); */
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    color: #FFF8E7;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}
.logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff6200;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: glow 2s ease-in-out infinite;
}
@keyframes glow {
    0%, 100% { text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
    50% { text-shadow: 2px 2px 20px rgba(255,215,0,0.8); }
}
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
nav a {
    color: rgb(109, 2, 2);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 1.1rem;
    position: relative;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s;
}
nav a:hover::after {
    width: 100%;
}
nav a:hover {
    color: #FFD700;
    transform: translateY(-2px);
}
.logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
nav a {
    color: rgb(103, 0, 0);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 1.4rem;
}
nav a:hover {
    color: #360000;
}
.login-btn {
    background: #FFD700;
    color: #8B3A1B;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}
.login-btn:hover {
    /* transform: scale(1.05); */
    background: #FFF8DC;
    border:2px solid #8B3A1B;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: #FFD700;
}
/* Hero Section with Carousel */
.hero-container {
    display: grid;
    grid-template-columns: 7fr 5fr;
    max-width: 1400px;
    margin: 2rem auto;
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    overflow: hidden;
}
.carousel-section {
    position: relative;
    height: 550px;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}
.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #8B3A1B 0%, #C84313 50%, #FFD700 100%);
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,215,0,0.8);
    border: none;
    color: #8B3A1B;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    transition: all 0.3s;
    z-index: 10;
    font-weight: bold;
}
.carousel-btn:hover {
    background: #FFD700;
    transform: translateY(-50%) scale(1.1);
}
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #FFD700;
}
.indicator.active {
    background: #FFD700;
    width: 35px;
    border-radius: 6px;
}
/* Leaders Section with Indian Flag Colors */
.leaders-section {
    background: linear-gradient(to bottom, #FF9933 0%, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%, #138808 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    position: relative;
}
.leaders-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 L60 40 L90 40 L65 60 L75 90 L50 70 L25 90 L35 60 L10 40 L40 40 Z" fill="%23FFD700" opacity="0.05"/></svg>');
    background-size: auto, 200px;
}
.leader-card {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: auto;
}
.leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #FFD700;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    margin: 0 auto 15px;
    display: block;
    transition: transform 0.3s;
}
.leader-image:hover {
    transform: scale(1.05);
}
.leader-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}
.leader-title {
    font-size: 1rem;
    color: #34495e;
    font-weight: 600;
}
/* Features Section */
.features-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-size: 2.5rem;
    color: #8B3A1B;
    margin-bottom: 0.5rem;
}
.section-title p {
    font-size: 1.2rem;
    color: #666;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
/* Tablet */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Mobile */
@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #C84313;
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    width: 80px;
    height: 80px;
    /* background: linear-gradient(135deg, #FF9933, #FFD700); */
    /* background: linear-gradient(135deg, #ff3333, #ff0000); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.feature-card h3 {
    font-size: 1.4rem;
    color: #8B3A1B;
    margin-bottom: 1rem;
}
/* About Section */
.about-section {
    /* background: linear-gradient(135deg, #8B3A1B 0%, #C84313 100%); */
    color: rgba(255, 255, 255, 0);
    padding: 20rem 2rem;
    margin: 4rem 0;
}
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
}
.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
/* Stats Section */
.stats-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 3px solid maroon;
}
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #c84313;
    transition: transform 0.3s ease;
}
.stat-card:hover{
    /* transform: scale(1.1); */
     transform: translateY(-12px) scale(1.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    /* background: linear-gradient(135deg, #eef2ff, #f5f3ff); */
    background: #fceabb;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #f8b500, #fceabb);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #f8b500, #fceabb); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color:white;
}
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #C84313;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1.2rem;
    color: #000000a8;
}
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .carousel-section {
        height: 400px;
    }
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
}
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease;
}
.section-header h2 {
    font-size: 3em;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.section-header .underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffd89b, #19547b);
    margin: 0 auto;
    border-radius: 2px;
    animation: expandWidth 1.5s ease;
}
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
    justify-items: center;
}
.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}
.feature-card:hover::before {
    left: 100%;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 20px; /* spacing below icon only */
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.icon-wrapper svg {
    width: 40px;
    height: 40px;
    fill: white;
}
.feature-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}
.feature-card p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
    text-align: center;
}
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}
.stat-box {
    background: rgba(25, 24, 24, 0.1);
    backdrop-filter: blur(5px);
    color: black;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeIn 1s ease;
    animation-fill-mode: both;
}
.stat-box:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    background: #fceabb;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #f8b500, #fceabb);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #f8b500, #fceabb); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border:2px solid maroon;
    color:white;
}
.stat-number:hover, .stat-label:hover, .stat-box:hover{
    color:white;
}
.stat-box:nth-child(1) { animation-delay: 0.8s; }
.stat-box:nth-child(2) { animation-delay: 1s; }
.stat-box:nth-child(3) { animation-delay: 1.2s; }
.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
}
.stat-label {
    font-size: 1.1em;
    color: black;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2em;
    }
    .feature-card {
        padding: 30px 20px;
    }
    .stat-number {
        font-size: 2em;
    }
}
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}
    media (max-width: 968px) {
    .menu-toggle {
        display: block;
    }
    nav {
        display: none;
        width: 100%;
        background: linear-gradient(135deg, #8B3A1B 0%, #C84313 100%);
        margin-top: 1rem;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    }
    nav.active {
        display: block;
        animation: slideDown 0.25s ease;
    }
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    nav li {
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    nav li:last-child {
        border-bottom: none;
    }
    nav a {
        display: block;
        padding: 14px;
        font-size: 1.1rem;
    }
    nav a:hover {
        background: rgba(255,255,255,0.12);
    }
}
.fade-img {
    transition: opacity 0.6s ease-in-out;
}
.fade-out {
    opacity: 0;
}
.fade-in {
    opacity: 1;
}
.lead{
    text-align: justify;
    color: gray;
}
.who-can-join {
    padding: 80px 0;
    background: linear-gradient(to right, #333333, #dd1818);
    /* background: linear-gradient(135deg, #ff3e3e 0%, #fa9292 100%); */
    position: relative;
    overflow: hidden;
}
.who-can-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: rgb(252, 252, 252);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.section-title p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}
.join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.join-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.join-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
     background: linear-gradient(135deg, #ea6666 0%, #a24b69 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.join-card:hover::before {
    transform: scaleX(1);
}
.join-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(234, 102, 102, 0.3);
}
.icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
   /* background: linear-gradient(135deg, #ea6666 0%, #a24b69 100%); */
    background: linear-gradient(to right, #333333, #dd1818);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
}
.join-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(234, 102, 122, 0.4);
}
.join-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.4;
}
.join-card p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}
.card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ea6666 0%, #a24b69 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    opacity: 0.2;
    transition: opacity 0.3s ease;
}
.join-card:hover .card-number {
    opacity: 1;
}
/* Decorative elements */
.decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(208, 39, 39, 0.1);
    pointer-events: none;
}
.decoration-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}
.decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}
@media (max-width: 768px) {
    .who-can-join {
        padding: 60px 0;
    }
    .section-title h2 {
        font-size: 32px;
    }
    .section-title p {
        font-size: 16px;
    }
    .join-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .join-card {
        padding: 35px 25px;
    }
    .icon-wrapper {
        width: 75px;
        height: 75px;
        font-size: 36px;
    }
    .join-card h5 {
        font-size: 20px;
    }
}
/* Animation on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.join-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}
.join-card:nth-child(1) { animation-delay: 0.1s; }
.join-card:nth-child(2) { animation-delay: 0.2s; }
.join-card:nth-child(3) { animation-delay: 0.3s; }
.join-card:nth-child(4) { animation-delay: 0.4s; }
.join-card:nth-child(5) { animation-delay: 0.5s; }
.join-card:nth-child(6) { animation-delay: 0.6s; }
.lang-switch {
    display: flex;
    gap: 6px;
    margin-right: 10px;
}
.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.25);
    color: #6b0000;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}
.lang-btn i {
    font-size: 14px;
}
.lang-btn:hover {
    background: #fff;
    color: #8b0000;
    transform: translateY(-2px);
}
.lang-btn.active {
    background: #fff;
    color: #8b0000;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.about-section {
    background: linear-gradient(135deg, #fff6f6, #fdfdfd);
    position: relative;
    overflow: hidden;
}
.about-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    animation: fadeUp 0.8s ease;
}
.about-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #7a0c0c;
    position: relative;
}
.about-title::after {
    content: '';
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, #d32f2f, #ff8a80);
    display: block;
    margin-top: 10px;
    border-radius: 10px;
}
.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #333;
    text-align:justify;
}
.about-highlight {
    background: linear-gradient(90deg, #ffecec, #fff);
    border-left: 5px solid #d32f2f;
    padding: 15px 20px;
    border-radius: 12px;
    margin: 20px 0;
}
.image-grid img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 18px;
}
.image-grid img:hover {
    transform: scale(1.06);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
.fade-img {
    animation: float 6s ease-in-out infinite;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
@media(max-width:768px) {
    .about-card {
        padding: 25px;
    }
    .about-title {
        font-size: 1.9rem;
    }
}
/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #7a1c00, #c34602);
    color: #fff;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
/* Wave Effect */
.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%237a1c00"/></svg>');
    background-size: cover;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px 40px;
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}
/* Brand Section */
.footer-brand {
    padding-right: 20px;
}
.footer-brand h3 {
    /* font-size: 42px; */
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffb813;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: glow 2s ease-in-out infinite;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}
.footer-brand .tagline {
    font-size: 22px;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}
.footer-brand .mission {
    font-size: 20px;
    opacity: 0.85;
    line-height: 1.7;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.85);
}
.footer-brand .divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, transparent);
    margin: 20px 0;
    border-radius: 2px;
}
/* Social Section */
.footer-social h5,
.footer-agencies h5 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}
.footer-social h5::after,
.footer-agencies h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.social-icons a i {
    position: relative;
    z-index: 1;
}
.social-icons a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    border-color: #FFD700;
}
.social-icons a:hover::before {
    opacity: 1;
}
.social-icons a:hover {
    color: #7a1c00;
}
.social-description {
    margin-top: 15px;
    font-size: 18px;
    color: white;
    line-height: 1.6;
}
/* Agencies Section */
.footer-agencies {
    padding-left: 20px;
}
.agency-logos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.agency-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.agency-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    background: #fff;
}
.agency-item img {
    height: 50px;
    width: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.agency-item:hover img {
    transform: scale(1.1);
}
.agency-name {
    margin-left: 15px;
    color: #7a1c00;
    font-weight: 600;
    font-size: 14px;
}
/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    position: relative;
    z-index: 1;
}
.footer-bottom-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}
.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}
.footer-links a:hover {
    color: #FFD700;
}
.footer-links a:hover::after {
    width: 100%;
}
/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-agencies {
        grid-column: 1 / -1;
        padding-left: 0;
    }
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px 30px;
    }
    .footer-brand {
        padding-right: 0;
    }
    .footer-brand h3 {
        font-size: 36px;
    }
    .footer-agencies {
        padding-left: 0;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    .agency-item:hover {
        transform: translateY(-5px);
    }
}
@media (max-width: 480px) {
    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .agency-item {
        flex-direction: column;
        text-align: center;
    }
    .agency-name {
        margin-left: 0;
        margin-top: 10px;
    }
}
/* Important Links */
.important-links h5 {
    color: #FFD700;
    /* font-size: 28px; */
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.important-links li a {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.important-links h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}
.important-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.important-links li {
    margin-bottom: 12px;
}
.important-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.important-links a:hover {
    color: #FFD700;
    padding-left: 6px;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: 2px solid #8B3A1B;
    color: #8B3A1B;
}

.lang-btn i {
    margin-right: 5px;
}
@media (max-width: 940px) {
    nav {
        display: none;
    }

    nav.active {
        display: block;
    }
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Noto Serif', serif;
            overflow-x: hidden;
        }

        /* Particles.js background */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 600px;
            background:maroon;
            z-index: 1;
        }

        canvas {
            display: block;
            vertical-align: bottom;
        }

        .hero-section {
            min-height: 500px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            position: relative;
            overflow: hidden;
            gap: 20px;
            padding: 0px 10px;
        }

        .pattern-overlay {
            position: absolute;
            inset: 0;
            background-image:repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
            pointer-events: none;
            z-index: 2;
        }

        /* Left Content Section */
        .content-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 20px 40px;
            position: relative;
            z-index: 10;
        }

        .decorative-border {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #FFD700, transparent);
            margin-bottom: 20px;
            animation: expandBorder 1.5s ease-out;
        }

        @keyframes expandBorder {
            from { width: 0; }
            to { width: 80px; }
        }

        .hero-title {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            color: #FFF8DC;
            margin-bottom: 15px;
            line-height: 1.2;
            font-weight: 700;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            animation: fadeInLeft 1s ease-out;
        }

        .hero-subtitle {
            font-size: clamp(0.85rem, 1.5vw, 1rem);
            color: rgba(255, 248, 220, 0.9);
            margin-bottom: 12px;
            line-height: 1.6;
            animation: fadeInLeft 1s ease-out 0.3s both;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .cta-button {
            display: inline-block;
            padding: 10px 30px;
            background: #FFD700;
            color: #8B4513;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 50px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            animation: fadeInLeft 1s ease-out 0.7s both;
            border: 3px solid transparent;
            align-self: flex-start;
        }

        .cta-button:hover {
            background: #FFF8DC;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
            border-color: #FFD700;
        }

        /* Center Mandala Section */
        .mandala-section {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .mandala-container {
            position: relative;
            width: 280px;
            height: 280px;
            animation: fadeIn 1.5s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .mandala-circle {
            position: absolute;
            border-radius: 50%;
            border: 3px solid rgba(255, 215, 0, 0.4);
            animation: rotate 30s linear infinite;
        }

        .mandala-circle:nth-child(1) {
            width: 280px;
            height: 280px;
            top: 0;
            left: 0;
        }

        .mandala-circle:nth-child(2) {
            width: 210px;
            height: 210px;
            top: 35px;
            left: 35px;
            animation-duration: 25s;
            animation-direction: reverse;
        }

        .mandala-circle:nth-child(3) {
            width: 140px;
            height: 140px;
            top: 70px;
            left: 70px;
            animation-duration: 20s;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .center-lotus {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 110px;
            height: 110px;
            background: radial-gradient(circle, #FFD700, #DAA520);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.05); }
        }

        .lotus-petals {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        /* .odia-letter {
            font-size: 3rem;
            font-weight: bold;
            color: #000000;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            z-index: 10;
            position: relative;
        } */
         .odia-letter {
            font-size: 3rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            z-index: 10;
            position: relative;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
        }


        .petal {
            position: absolute;
            width: 25px;
            height: 50px;
            background: linear-gradient(180deg, #FFF8DC, #FFD700);
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            top: 50%;
            left: 50%;
            transform-origin: center bottom;
            opacity: 0.8;
        }

        .petal:nth-child(1) { transform: translate(-50%, -100%) rotate(0deg); }
        .petal:nth-child(2) { transform: translate(-50%, -100%) rotate(45deg); }
        .petal:nth-child(3) { transform: translate(-50%, -100%) rotate(90deg); }
        .petal:nth-child(4) { transform: translate(-50%, -100%) rotate(135deg); }
        .petal:nth-child(5) { transform: translate(-50%, -100%) rotate(180deg); }
        .petal:nth-child(6) { transform: translate(-50%, -100%) rotate(225deg); }
        .petal:nth-child(7) { transform: translate(-50%, -100%) rotate(270deg); }
        .petal:nth-child(8) { transform: translate(-50%, -100%) rotate(315deg); }

        /* Officers Section */
        .officers-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 40px;
            padding: 20px;
            position: relative;
            z-index: 10;
        }

        .officer-card {
            text-align: center;
            animation: fadeInRight 1s ease-out;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .officer-image-container {
            width: 150px;
            height: 150px;
            margin: 0 auto 15px;
            position: relative;
        }

        .officer-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #FFD700;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            background: #FFF8DC;
        }

        .officer-image:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
        }

        .officer-name {
            font-size: 1.2rem;
            font-weight: bold;
            color: #FFF8DC;
            margin-bottom: 8px;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
        }

        .officer-designation {
            font-size: 0.95rem;
            color: rgba(255, 248, 220, 0.85);
            font-style: italic;
            line-height: 1.4;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-section {
                gap: 15px;
                padding: 30px 15px;
            }

            .mandala-container {
                width: 220px;
                height: 220px;
            }

            .mandala-circle:nth-child(1) {
                width: 220px;
                height: 220px;
            }

            .mandala-circle:nth-child(2) {
                width: 165px;
                height: 165px;
                top: 27.5px;
                left: 27.5px;
            }

            .mandala-circle:nth-child(3) {
                width: 110px;
                height: 110px;
                top: 55px;
                left: 55px;
            }

            .center-lotus {
                width: 90px;
                height: 90px;
            }

            .odia-letter {
                font-size: 2.5rem;
            }

            .officer-image-container {
                width: 120px;
                height: 120px;
            }
        }

        @media (max-width: 968px) {
            .hero-section {
                grid-template-columns: 1fr;
                height: auto;
                gap: 30px;
                padding: 30px 20px;
            }

            #particles-js {
                height: 100%;
                min-height: 100vh;
            }

            .content-section {
                padding: 20px;
            }

            .officers-section {
                flex-direction: row;
                gap: 30px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .mandala-container {
                width: 250px;
                height: 250px;
            }

            .mandala-circle:nth-child(1) {
                width: 250px;
                height: 250px;
            }

            .mandala-circle:nth-child(2) {
                width: 187.5px;
                height: 187.5px;
                top: 31.25px;
                left: 31.25px;
            }
            .mandala-circle:nth-child(3) {
                width: 125px;
                height: 125px;
                top: 62.5px;
                left: 62.5px;
            }
            .center-lotus {
                width: 100px;
                height: 100px;
            }
            .odia-letter {
                font-size: 2.8rem;
            }
            .officer-image-container {
                width: 140px;
                height: 140px;
            }
        }
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.5rem;
            }
            .hero-subtitle {
                font-size: 0.85rem;
            }
            .officers-section {
                flex-direction: column;
                gap: 25px;
            }
            .officer-card {
                width: 100%;
            }
        }
