.navbar-toggler-icon {
    display: inline-block;
    width: 20px;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}


.navbar {
    padding: 15px 0px;
}

.nav-item {
    margin: 0px 5px;
}

.nav-link {
    color: #000;
    font-size: 14px;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding-left: 7px;
    padding-right: 7px;
    position: relative;
}

.navbar-nav .dropdown-menu {
    border-radius: 0;
    margin-top: 0.2rem;
}

.navbar-brand h1 {
    font-size: 24px;
    margin: 0;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding-top: 10px;
    }
}

.hero-section {
    background: linear-gradient(to bottom right, #1f3f2f, #43083b);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 20px;

}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #69fb1c, #ff0e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
     margin-top: 20px;
    margin-bottom: 30px;
}

.hero-section p {
    max-width: 550px;
    font-size: 1.1rem;
}

.hero-section .btn-start {
    background: linear-gradient(to right, #35c719, #1e4ba9, #11b1aa);
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0px;
}

.hero-section .btn-starts {
    background: #fff;
    color: #000;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    margin-top: 20px;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0px;
}



.hero-section .features i {
    color: #ffffff;
    margin-right: 5px;
}

.hero-section .features span {
    margin-right: 25px;
    font-size: 0.95rem;
}

.hero-img {
    width: 80%;
}

.social-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 0;
}


.white {
    color: white !important;
    font-size: 1rem;
}

.social-icons a {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    color: #000;
    text-align: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #28f27d;
    color: #fff;
}

.sebi-marquee-wrapper {
    background-color: white;
    overflow: hidden;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 30px 0;
    position: relative;
}

.sebi-marquee-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
}

.sebi-marquee-content {
    display: flex;
}

.sebi-item {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #000;
    margin-right: 60px;
}

.sebi-item i {
    color: green;
    font-size: 20px;
    margin: 0 10px;
}


@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



@media (max-width: 600px) {
    .sebi-item {
        font-size: 0.9rem;
        margin-right: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        text-align: center;
    }

    .social-icons {
        top: auto;
        bottom: 20px;
        right: 10px;
        transform: none;
        flex-direction: row;
    }

    .social-icons a {
        border-radius: 50%;
    }
}

.why-join p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #555;
}

.card-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.card {
    flex: 0 0 300px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    transition: box-shadow 0.3s ease;
    max-height: 394px;
    height: 384px;
    margin: 10px;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-color: #8e24aa;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* We'll set icon colors dynamically in JS, override here if needed */
.icon-circle.lightbulb {
    background-color: #00bcd4;
}

.icon-circle.chart-line {
    background-color: #ec407a;
}

.icon-circle.user-check {
    background-color: #26a69a;
}

.icon-circle i {
    color: white;
    font-size: 22px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #222;
}

.card p {
    font-size: .9rem;
    color: #555;
    line-height: 1.5;
}

/* Hide scrollbar for Webkit browsers */
.card-container::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.card-container {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

@media (max-width: 768px) {
    .card-container {
        flex-wrap: nowrap;
    }

    .card {
        flex: 0 0 90%;
    }

    .why-join h2 {
        font-size: 2rem;
    }
}

.why_join_us {
    padding: 40px 0px;
    text-align: left;
}


.why_join_us h2 {
    background: linear-gradient(to right, #026024, #a100d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-size: 3rem;
    line-height: normal;
    font-weight: bold;
}

.why_join_us h2 span {
    font-size: 2rem;
}

.about-section {
    background-image: linear-gradient(to bottom right, #1f3f2f, #43083b);
    color: #fff;
}

.about-section::before {
    content: '';
    background-image: url('../img/dot.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100%;
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    z-index: -1;
    opacity: .3;
}

.about-title span {
    background: linear-gradient(to right, #69fb1c, #ff0e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-img img {
    border-radius: 10px;
    max-width: 75%;
    box-shadow: 0px 0px 20px 0px #00000052;
}

.btn-gradient {
    background: linear-gradient(to right, #69fb1c, #ff0e00);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-gradient:hover {
    opacity: 0.9;
}

.about-title {
    font-weight: bold;
    font-size: 3rem;
    margin-top: 30px;
}

.app-section {
    padding: 60px 0;
}

.app-title span {
    background: linear-gradient(to right, #69fb1c, #ff0e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-img img {
    max-width: 50%;
}

.btn-gradient {
    background: linear-gradient(to right, #69fb1c, #ff0e00);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-gradient:hover {
    opacity: 0.9;
}

.store-badges img {
    max-width: 140px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.stats {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    margin: 15px;
    font-weight: bold;
}

.countdown {
    font-size: 1.25rem;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .app-title {
        font-size: 1.75rem;
    }

    .store-badges img {
        max-width: 120px;
    }

    .stat-item h4 {
        font-size: 1.5rem;
    }
}

.app-section h2 {
    font-size: 56px;
    font-weight: bold;
    line-height: normal;
}

.testimonial-section {
    padding: 30px 0px;
        text-align: center;
    background: #f3f3f3;
}

.testimonial-slider .card {
    background: #f8f9fa;
    color: #000;
}

.testimonial-slider .card .text-primary {
    color: #6610f2 !important;
}

.testimonial-slider .card .text-warning {
    color: #ffc107 !important;
}

@media (max-width: 768px) {
    .testimonial-slider .card .row {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-slider .card .col-md-3,
    .testimonial-slider .card .col-md-9 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .testimonial-slider .card .text-primary {
        font-size: 2rem;
    }

    .testimonial-slider .card .fs-5 {
        font-size: 1rem;
    }
}

.testimonial-slider {
    background: #fff;
    border-radius: 10px;
}

.text-primary {
    line-height: 0px;
}

.testimonial-section .row h1 {
    background: linear-gradient(to right, #69fb1c, #ff0e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-size: 3rem;
    line-height: normal;
    font-weight: bold;
    text-align: center;
}

.connect h2 {
    background: linear-gradient(to right, #69fb1c, #ff0e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-size: 2.5rem;
    line-height: normal;
    font-weight: bold;
    text-align: center;
}

.connect {
    padding: 16px 0px;
}


.connect-card {
    background: rgb(255 255 255 / 32%);
    border-radius: 1rem;
    padding: .5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0px auto;
    cursor: pointer;
}

.connect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.connect-card img {
    height: 41px;
    margin-bottom: 0;
}

.connect-card .btn {
    border-radius: 2rem;
    font-weight: 600;
    margin: 10px 0px;
}

.faq-heading {
    background: linear-gradient(to right, #69fb1c, #ff0e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-size: 3rem;
    line-height: normal;
    font-weight: bold;
    text-align: center;
}

.accordion-button {
    font-weight: 500;
    font-size: 1.1rem;
}

.accordion-item {
    border-radius: 10px;
    margin-bottom: 20px;
    border: none;
    padding: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq {
    background: linear-gradient(to bottom, #14532d, #581c87);
}

.ontop {
    position: relative;
    z-index: 9;
}

.footer {
    background: linear-gradient(160deg, #512b7f, #066b2a);
    color: #ffffff;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer ul {
    padding: 0;
    list-style: none;
}

.social-icon {
    background: #fff;
    color: #512b7f !important;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: #ddd;
    color: #000;
}

.app-badge {
    max-width: 130px;
}

.about-container {
    display: flex;
    justify-content: center;
    /* background: linear-gradient(to bottom, #14532d, #581c87);
        color: white; */
    padding: 40px 20px;
}

.about-content {
    max-width: 1200px;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to bottom, #14532d, #581c87);
    color: white;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.about-content h1,
.about-content h2 {
    color: #e0ffef;
}

.about-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.about-content li {
    margin-bottom: 10px;
}

.about-us-area {}

@media (max-width: 600px) {
    .about-container {
        padding: 20px 10px;

    }

    .about-content {
        padding: 20px;
        background: linear-gradient(to bottom, #14532d, #581c87);
        color: white;
    }

    .about-content h1 {
        font-size: 1.5rem;
    }

    .about-content h2 {
        font-size: 1.2rem;
    }
}


@media (max-width: 767.98px) {
    .footer {
        text-align: center;
    }

    .navbar-brand {
        width: 20% !important;
    }

    .social-icon {
        margin: 0 5px;
    }
}

.wave-course-wrapper {
    padding: 80px 0px;
    text-align: center;
    background: #f3f3f3;
}

.wave-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.wave-subtitle {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(to right, #69fb1c, #ff0e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wave-description {
    font-size: 23px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.wave-description2 {
    font-size: 21px;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.wave-cta-box a {
    background: linear-gradient(to right, #02904c, #03ad37);
    padding: 17px;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;

}


@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.wave-cta-box a {
    background: linear-gradient(to right, #02904c, #03ad37);
    background-size: 200% 200%;
    padding: 17px;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    animation: gradientAnimation 3s ease infinite;
}



.service-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card .card-title {
    color: #333;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card .card-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.start-btn {
    background: linear-gradient(to right, #a26bff, #28f27d);
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0px;
}

.start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 144, 76, 0.3);
}



.jot {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem !important;
    background: linear-gradient(to right, #69fb1c, #ff0e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Journey-section .card {
    height: auto;
    background-image: linear-gradient(to right, #9c27b069, #00e6762e);
    background-color: #ffffff;
}

.Journey-section {
    padding: 40px 0px;
    text-align: center;
    background: #1e1e1e;
}

.footerarea {
    justify-content: space-between;
}

.navbar-brand {
    width: 7%;
}


.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ececec;
    white-space: nowrap;
    position: relative;
    height: 80px;
}

.marquee-content {
    position: absolute;
    white-space: nowrap;
    display: inline-block;
    padding: 21px 0px;
}

.marquee-item {
    display: inline-block;
    padding: 0 30px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    color: #333;
}

.marquee-item i {
    margin-right: 5px;
    color: #777;
}

.marquee-item img {
    height: 48px;
    margin-right: 10px;
    vertical-align: middle;
}

.marquee-content .marquee-item::before {
    content: '';
    display: inline-block;
    background-image: url('../img/generated-svg-image.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.connect {

    background-image: linear-gradient(to right, rgba(88, 28, 135, 0.59), rgba(20, 83, 45, 0.54)), url('../img/social-media.webp');
    background-color: #000;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100%;
    background-position: center;
}


.service1 .row {
    position: relative;
}

.service1 .col-lg-4 {
    position: sticky;
    top: 30px;
}

.service2 .row {
    position: relative;
}

.service2 .col-lg-4 {
    position: sticky;
    top: 30px;
}

.disclosure {
    max-width: 800px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

    h1,
    h2,
    h3 {
        color: #2c3e50;
        margin-top: 30px;
        font-size: 21px;
    }

    h1 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    ul {
        margin-left: 0px;
        padding-left: 0px;
    }

    .contact {
        font-weight: bold;
    }

    li {
        list-style: none;
    }

    a {
        text-decoration: none;
        color: #000;
        margin-bottom: 15px;
        display: block;
    }
}

.cardi-body li {
    margin-bottom: 10px;
}

.homed h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;

}

.dropdown-arrow {
    transform: rotate(-90deg);
    position: absolute;
    right: 0px;
    width: 35px;
    height: 35px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

@media (min-width: 768px) {
    .dropdown>a::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 7px solid #000;
        display: inline-block;
        margin-left: 5px;
        transition: all 0.3s ease;

    }
}

.modal-dialog {
    max-height: 80vh;
}

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

#loader {
      position: fixed;
      z-index: 9999;
      width: 100vw;
      height: 100vh;
      background: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    #loader img {
      max-width: 150px;
      height: auto;
      animation: pulse 1.5s infinite;
    }

    .spinner-border {
      width: 3rem;
      height: 3rem;
      margin-top: 20px;
      color: #007bff;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.8; }
      100% { transform: scale(1); opacity: 1; }
    }

    @media (max-width: 768px) {
      #loader img {
        max-width: 100px;
      }
      .spinner-border {
        width: 2rem;
        height: 2rem;
      }
    }

    .para-size p{
        font-size: 20px;
    }

    .josh_talk{
        padding: 40px 0px;
    }

       .josh_talk_heading h1{
        background: linear-gradient(to right, #69fb1c, #ff0e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 0px;
    font-size: 3rem;
    line-height: normal;
    font-weight: bold;
    text-align: center;
       }


       .josh_talk .row:nth-child(2){
        margin-top: 50px;
       }

       .josh_talk :where(h3){
     
    font-size: 1.8rem;
    margin-bottom: 30px;
    line-height: normal;
    font-weight: bold;
    text-align: center;
       }


           .video-slider {
    margin: 20px auto;
    padding: 0 20px;
}
.video-slider .slick-prev:before,
.video-slider .slick-next:before {
    color: #000;
}
.video-slider .slick-slide {
    margin: 0 10px;
}


.gallery{
    padding: 40px 0px;
    text-align: center;
}

.gallery h1{
    margin-bottom: 30px;
}

.gallery img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 0% 39%;
}

.gallery_area{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.footer img{
    filter: invert(1);
}



.complaint-board table thead tr{
    background: linear-gradient(270deg, #35c719, #1e4ba9, #11b1aa);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}            .complaint-board {
    padding: 50px 0;
    background: #f8f9fa;
}

.complaint-board h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-transform: uppercase;
    position: relative;
}

.complaint-board h1:after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #3498db;
    margin: 15px auto;
}

.complaint-board .date-info {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

.complaint-board h2 {
    color: #34495e;
    margin: 30px 0;
    padding-left: 15px;
    border-left: 5px solid #3498db;
    font-size: 26px;
}

.complaint-board table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.complaint-board th, .complaint-board td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.complaint-board th {
    
    color: white;
    text-transform: uppercase;
    font-weight: 500;
}

.complaint-board tr:nth-child(even) {
    background: #f2f2f2;
}



.complaint-board .grand-total {
    background: #2c3e50 !important;
    color: white;
    font-weight: bold;
}

.complaint-board .note-section, .complaint-board .definition-section {
    background: white;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.complaint-board .note-section h3, .complaint-board .definition-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.complaint-board .note-section ul li {
    margin: 10px 0;
    line-height: 1.6;
    color: #555;
}

.complaint-board .example-calculation {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.complaint-board .example-calculation p {
    margin: 10px 0;
    color: #666;
}

.complaint-board .definition-section p {
    margin: 15px 0;
    line-height: 1.6;
}

.complaint-board .definition-section strong {
    color: #2c3e50;
}

.complaint-board .Grivence-Redressal {
    padding: 50px 0;
    background: #fff;
}

.complaint-board .Grivence-Redressal h1 {
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

.complaint-board .Grivence-Redressal h1:after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #e74c3c;
    margin: 15px auto;
}

.complaint-board .Grivence-Redressal ul {
    background: white;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.complaint-board  .Grivence-Redressal li {
    margin: 10px 0;
    color: #555;
}

.complaint-board .Grivence-Redressal a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.complaint-board .Grivence-Redressal a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.complaint-board  .Grivence-Redressal strong {
    color: #2c3e50;
}

.complaint-board .Grivence-Redressal h2 {
    color: #e74c3c;
    margin: 30px 0 20px;
    padding-left: 15px;
    border-left: 5px solid #e74c3c;
}


@media (max-width: 768px) {
    .complaint-board .table {
        display: block;
        overflow-x: auto;
    }
    
    .complaint-board h1 {
        font-size: 2rem;
    }
    
    .complaint-board .note-section, .complaint-board .definition-section {
        padding: 15px;
    }
}


p[data-f-id="pbf"]{
    display:none;
}