* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

body {
    background-color: #fff
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1
}

header {
    background-color: #14375f;
    color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative
}

.logo {
    display: flex;
    align-items: center
}

.logo-title h1 {
    font-size: 3.2em;
    margin-bottom: 4px;
    font-weight: 700;
    color: #f79c3a
}

.logo-title p {
    font-size: 1.33em;
        color: #ee4148;
    margin: 4px 0;
    font-weight: 700
}

.logo-icon {
    color: #f79c3a;
    margin-right: 8px
}

.logo-icon img {
    height: 145px
}

.nav-container {
    display: flex;
    align-items: center
}

.main-nav {
    display: flex;
    margin-right: 20px
}

.main-nav li {
    list-style: none;
    margin: 0 15px
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.15em;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #f79c3a;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease
}

.main-nav a:hover:after {
    width: 100%
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    margin-right: 20px
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease
}

.open-positions-btn {
    background-color: #fff0;
    border: 2px solid #bd6b0b;
    color: #bd6b0b;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 1.1em;
    font-weight: 700
}

.open-positions-btn:hover {
    background-color: rgb(255 255 255 / .1)
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #14375f;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    z-index: 100;
    border-radius: 0 0 10px 10px
}

.mobile-nav.active {
    max-height: 300px;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1)
}

.mobile-nav li {
    list-style: none;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid rgb(255 255 255 / .1)
}

.mobile-nav li:last-child {
    border-bottom: none
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: block;
    transition: all 0.3s ease
}

.mobile-nav a:hover {
    color: #f79c3a
}

.hero {
    background-color: #14375f;
    color: #fff;
    padding: 20px 0 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.hero-content {
    width: 50%
}

.hero-content h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    line-height: 1.2
}

.hero-content h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #e8a327
}

.hero-content p {
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.2em
}

.primary-btn {
    background-color: #cd4e0d;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block
}

.primary-btn:hover {
    background-color: #e88b21;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(0 0 0 / .2)
}

.hero-image {
    width: 50%;
    position: relative;
    /* margin-right: -45px; */
        margin-bottom: -65px
}

.anganwadi-building {
    width: 100%
}

.hindi-section {
    background-color: #f1e8d9;
    padding: 40px;
    text-align: center
}

.feature-section {
    padding: 40px;
    text-align: center
}

.hindi-heading {
    font-size: 2.2em;
    margin-bottom: 10px;
    text-align: left;
    color: #14375f
}

.hindi-subtext {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
    text-align: left
}

.icon-grid {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 10px
}

.icon-box {
    background-color: #f9f3e9;
    box-shadow: 0 10px 30px rgb(0 0 0 / .1);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 95%;
    transition: all 0.3s ease;
    cursor: pointer
}

.icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgb(0 0 0 / .1)
}

.icon-box:nth-child(1) {
    background-color: #fc9
}

.icon-box:nth-child(2) {
    background-color: #66cdaa
}

.icon-box:nth-child(3) {
    background-color: #a2d2ff
}

.icon-box:nth-child(4) {
    background-color: #fc6
}

.icon-box:nth-child(5) {
    background-color: #ffa07a
}

.icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #14375f
}

.icon img {
    height: 120px
}

.icon-title {
    font-size: 1.4em;
    color: #14375f;
    font-weight: 700
}

.steps-section {
    padding: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #ddd;
    margin-top: 20px
}

.steps-content {
    width: 40%
}

.steps-heading {
    text-align: left;
    font-size: 28px;
    color: #14375f;
    margin-bottom: 20px
}

.steps-subtext {
    text-align: left;
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6
}

.steps-visual {
    width: 100%;
    position: relative
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #4db6ac;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-right: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .1)
}

.step-item:nth-child(2) .step-number {
    background-color: #ff8a65
}

.step-item:nth-child(3) .step-number {
    background-color: #ffd54f
}

.step-item:nth-child(4) .step-number {
    background-color: #7986cb
}

.step-details {
    flex: 1;
    margin: 10px 0 0 0
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #14375f;
    margin-bottom: 5px
}

.step-description {
    font-size: 1.1em;
    color: #666
}

.faq-heading {
    font-size: 28px;
    color: #14375f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd
}

.faq-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.faq-question {
    font-size: 16px;
    color: #14375f
}

.faq-toggle {
    color: #14375f;
    font-size: 20px
}

.footer {
    background-color: #f9eee1;
    padding: 40px 20px;
    text-align: center
}

.footer p {
    font-size: .9em
}

.footer-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px
}

.footer-logo img {
    box-shadow: 0 10px 30px rgb(0 0 0 / .1);
    width: 100%;
    height: 100%;
    /* border-radius: 70px */
}

.footer-title {
    font-size: 28px;
    color: #14375f;
    margin-bottom: 4px;
    font-weight: 700
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 30px 0;
    flex-wrap: wrap
}

.footer-nav a {
    color: #14375f;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease
}

.footer-nav a:hover {
    color: #f79c3a
}

.footer-copyright {
    color: #14375f;
    font-size: 16px;
    margin-top: 30px
}

.footer-vectre-logo {
    height: 35px
}

.animate-in {
    opacity: 1;
    transform: translateY(0)
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px)
}

@media (max-width:992px) {
    .hero {
            padding: 20px 0 0px 40px;
        }
    
        .logo {
            flex-direction: column;
        }
    
        .logo-title {
            text-align: center;
        }
    .nav-container {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        border-top: 1px dashed #cac4b9bf;
        padding: 10px;
        border-bottom: 1px dashed #cac4b9bf
    }

    .col,
    .hero-content {
        width: 100% !important
    }

    .feature-section {
        display: flex;
        flex-direction: column-reverse
    }

    .main-nav {
        display: none
    }

    .hamburger {
        display: block
    }

    .row,
    .steps-section,
    header,
    .hero {
        display: flex;
        flex-direction: column
    }

    .logo-title h1 {
        font-size: 3.2em
    }

    header {
        padding: 20px
    }

    .hero-content h2 {
        font-size: 1.9em
    }

    .hero-image {
        width: 100%;
        position: relative;
        margin-right: 0;
        margin-bottom: -83px
    }

    .footer-title {
        font-size: 24px
    }

    .footer-nav {
        gap: 10px;
        margin: 4px 0
    }

    .footer-nav a {
        font-size: 16px
    }

    .icon-grid {
        flex-wrap: wrap
    }
}

@media (max-width:768px) {

    .hero,
    .steps-section {
        flex-direction: column
    }

    .hero-content,
    .hero-image,
    .steps-content,
    .steps-visual {
        width: 100%;
        margin-bottom: 0px
    }

    .icon-grid {
        flex-wrap: wrap
    }

    .icon-box {
        width: 48%;
        margin-bottom: 15px
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px
    }

    header {
        padding: 20px
    }
}

@media (max-width:576px) {
    .icon-box {
        width: 100%
    }

    .open-positions-btn {
        font-size: 14px;
        padding: 6px 10px
    }

    .logo span {
        font-size: 20px
    }
}

.mt-10 {
    margin-top: 10px
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.col-1 {
    width: 70%;
    padding: 20px
}

.col-2 {
    width: 30%;
    padding: 20px
}

.officials-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-end
}

.official-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s forwards
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.official-card:nth-child(2) {
    animation-delay: 0.3s
}

.official-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 0 0 / .15)
}

.image-container {
    background: linear-gradient(to bottom, #f79c3a, #a95e07);
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden
}

.official-card:nth-child(2) .image-container {
    background: linear-gradient(to bottom, #f79c3a, #a95e07)
}

.image-container img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    transition: all 0.3s ease
}

.official-card:hover .image-container img {
    transform: scale(1.05)
}

.official-info {
    padding: 20px;
    text-align: center
}

.official-name {
    color: #333;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600
}

.official-title {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px
}

.official-department {
    color: #3a86ff;
    font-size: 14px;
    font-weight: 500
}

.highlight {
    position: relative;
    display: inline-block
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3a86ff;
    transition: width 0.3s ease
}

.official-card:hover .highlight::after {
    width: 100%
}

@media (max-width:768px) {
    .officials-section {
        flex-direction: column;
        align-items: center
    }
}

.notice-board {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1);
    text-align: left
}

.notice-header {
    background: #14375f;
    color: #fff;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 600
}

.notice-content {
    height: 350px;
    overflow-y: auto;
    background: #f0f0f0;
    scrollbar-width: thin;
    scrollbar-color: #888 #f0f0f0
}

.notice-content::-webkit-scrollbar {
    width: 6px
}

.notice-content::-webkit-scrollbar-track {
    background: #f0f0f0
}

.notice-content::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px
}

.notice-item {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    background: #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    animation: fadeIn 0.5s forwards;
    opacity: 0
}

@keyframes fadeIn {
    to {
        opacity: 1
    }
}

.notice-item:nth-child(even) {
    background: #e5e5e5
}

.notice-item:last-child {
    border-bottom: none
}

.notice-item:hover {
    background: #dbeaff
}

.notice-item-title {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 8px
}

.notice-item-title span {
    margin-right: 8px
}

.notice-date {
    font-size: 14px;
    color: #666;
    font-weight: 500
}

.notice-link {
    position: absolute;
    bottom: 15px;
    right: 20px;
    background: #36c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0
}

.notice-item:hover .notice-link {
    opacity: 1
}

.notice-item.new-notice::before {
    content: 'नया';
    position: absolute;
    top: 15px;
    right: 20px;
    background: #ff5252;
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500
}

@keyframes scrollNotice {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-30px)
    }
}

.scroll-animation {
    animation: scrollNotice 2s infinite alternate;
    animation-timing-function: ease-in-out
}

.faq-header {
    text-align: center;
    margin-bottom: 40px
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #4776E6, #8E54E9)
}

.faq-subtitle {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px
}

.accordion {
    list-style: none;
    margin: 0;
    padding: 0
}

.accordion-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgb(0 0 0 / .05);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.accordion-item:nth-child(1) {
    animation-delay: 0.1s
}

.accordion-item:nth-child(2) {
    animation-delay: 0.2s
}

.accordion-item:nth-child(3) {
    animation-delay: 0.3s
}

.accordion-item:nth-child(4) {
    animation-delay: 0.4s
}

.accordion-item:nth-child(5) {
    animation-delay: 0.5s
}

.accordion-item:nth-child(6) {
    animation-delay: 0.6s
}

.accordion-item:hover {
    box-shadow: 0 10px 20px rgb(0 0 0 / .1);
    transform: translateY(-3px)
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease
}

.accordion-header:hover {
    color: #4776E6
}

.accordion-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: #666;
    transition: all 0.3s ease
}

.accordion-icon::before {
    width: 12px;
    height: 2px
}

.accordion-icon::after {
    width: 2px;
    height: 12px
}

.accordion-item.active .accordion-icon {
    background: #4776E6;
    transform: rotate(45deg)
}

.accordion-item.active .accordion-icon::before,
.accordion-item.active .accordion-icon::after {
    background: #fff
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #666;
    line-height: 1.6;
    transition: all 0.35s ease
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 25px
}

.accordion-item.active .accordion-header {
    border-bottom: 1px solid #eee
}

@media (max-width:768px) {
    .faq-title {
        font-size: 28px
    }

    .accordion-header {
        font-size: 16px;
        padding: 18px 20px
    }
}

.intro-section {
    background-color: #f9f6f1;
    background-repeat: repeat;
    background-size: 300px 300px;
    padding: 0!important;
}

.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden
}

.particles-background::before,
.particles-background::after {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgb(255 213 150 / .25) 2px, transparent 3px) 0 0, radial-gradient(circle, rgb(255 169 169 / .25) 2px, transparent 3px) 50px 50px, radial-gradient(circle, rgb(197 243 255 / .25) 2px, transparent 3px) 100px 100px;
    background-size: 200px 200px;
    animation: moveParticles 60s linear infinite
}

.particles-background::after {
    animation-delay: -30s
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(-100px, -100px)
    }
}

.pt-10 {
    padding-top: 10px
}

.head2 {
    background-color: #dbc092;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    border-bottom: 1px solid #3a5269;
}

tr {
    transition: all 0.2s ease;
}

tr:hover {
    background-color: #f9fafb;
}

td {
    padding: 14px 20px;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    color: #333;
    font-size: 14px;
}

.view-btn {
    display: inline-block;
    padding: 6px 12px;
    background-color: #3a5269;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 13px;
}

.view-btn:hover {
    background-color: #2c3e50;
}

.date-cell {
    color: #666;
}

.title-cell {
    font-weight: 500;
    color: #222;
}

.description-cell {
    color: #555;
    max-width: 300px;
}

tr:first-child th:first-child {
    border-top-left-radius: 16px;
}

tr:first-child th:last-child {
    border-top-right-radius: 16px;
}

/* First row of table header */
thead tr:first-child {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.action-btn {
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.action-btn:hover {
    background-color: #eaeaea;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-in-progress {
    background-color: #e8f0fe;
    color: #1a73e8;
}

.status-completed {
    background-color: #e6f4ea;
    color: #137333;
}

.row-animate {
    animation: fadeIn 0.5s forwards;
}

.see-all {
    text-decoration: none;
    color: #1a73e8;
    font-size: 13px;
    font-weight: 500;
}

.priority-marker {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #fa5a3d;
    border-radius: 50%;
    margin-left: 5px;
}