:root {
    --linear-red: linear-gradient(-180deg, #19aaed, #157fb1);
    --linear-green: linear-gradient(62deg, #2c393f, #20292e);
    --text-red: #19aaed;
    --text-green: #2c393f;
    --light-red: #eefaff;
}
/* body {
    font-family: "Song Myung", serif;
} */

.bg-gray{
    background:#f3f3f3;
}
.bg-red {
    background: var(--linear-red);
}

.bg-green {
    background: var(--linear-green);
}

.border-red {
    border-color: var(--text-red);
}

.border-green {
    border-color: var(--text-green);
}

.text-red {
    color: var(--text-red);
}

.text-green {
    color: var(--text-green);
}

a {
    cursor: pointer;
}

html {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.main-section {
    display: flex;
    flex-direction: column;
    min-height: 74vh;
    margin-top: 100px;
}

.ellipsis-text {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}
.inspiration-line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Master */
.fixed-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
}

.nav-link {
    color: white;
}
.nav-link:hover {
    background: var(--light-red);
    color: var(--text-red);
}
.nav-link.active {
    background: var(--light-red) !important;
    color: var(--text-red) !important;
}

.logo-img {
    height: 80px;
    width: auto;
}

.person-img {
    height: 60px;
    width: 60px;
    object-fit: cover;
}

.header-text {
    font-size: 1.3rem;
    line-height: 1.2;
}
.footer-logo {
    height: 65px;
}
.footer-circle {
    border: 3px solid white;
    border-radius: 50%;
}
.floating-social {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
}

.ftr-link.top-social {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ftr-link.top-social li {
    width: 32px;
    height: 32px;
    margin: 7px 0;
}

.ftr-link.top-social a {
    color: white;
    display: block;
    text-decoration: none;
    padding: 6px;
    font-size: 15px;
    border-radius: 50%;
    text-align: center;
    transition: background-color 0.3s;
}

.floating-social li:after {
    content: "";
}
.facebook {
    background-color: #1877f2;
}

.twitter {
    background-color: #000000;
}

.youtube {
    background-color: #ff0000;
}

.whatsapp {
    background-color: #25d366;
}

/* Index */
.fa-arrow-right-long {
    font-size: 24px;
}

/* About */
.fixed-image {
  background: url("{{ asset('images/about.jpg') }}") no-repeat center center;
  background-size: cover;
  position: sticky; 
  height:100vh;    
  top: 0;
}
.theme-font {
    font-family: "Song Myung", serif;
    font-size: 26px;
}
.citation-table {
    width: 80%;
}
.citation-table th:nth-child(1),
.citation-table td:nth-child(1) {
    width: 50%;
    white-space: nowrap;
}
.citation-table th:nth-child(2),
.citation-table td:nth-child(2) {
    width: 50%;
}

.breadcrumb-list {
    list-style: none;
}
.breadcrumb-item::before {
    content: "" !important;
}
.breadcrumb-item::after {
    content: "|";
    margin: 0 10px;
    color: #fff;
}

/* Contact */
.required-star {
    color: red;
}

/* Flip Cards */
.face {
    transform-style: preserve-3d;
    transition: transform 0.7s;
    cursor: pointer;
    min-height: 140px;
}

.front-face,
.back-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.back-face {
    transform: rotateY(180deg);
}

.face:hover {
    transform: rotateY(180deg);
}

/* Report Issue */
.issue-face {
    height: 189px;
}

/* Media */
.media-container,
.rti-container {
    position: relative;
}
.media-container .media-tab,
.rti-container .rti-tab {
    position: absolute;
    width: 335px;
    top: 25px;
    background: var(--linear-red);
    height: auto;
    padding: 25px 25px 40px 25px;
    right: 40px;
    color: white;
    z-index: 99;
}
.media-container .tab-content,
.rti-container .tab-content {
    background: #f1f1f1ff;
    width: 85%;
    margin-bottom: 30px;
}
.media-container .nav-link,
.rti-container .nav-link {
    border-radius: 0 !important;
    background: #97969600;
    margin-bottom: 10px;
    border-bottom: 1px solid #dbdbdb;
}
.media-container .nav-link:hover,
.rti-container .nav-link:hover {
    background: var(--linear-red);
    color: white;
}
/* .media-container .nav-link.active,
.rti-container .nav-link.active {
  background: var(--bg-red) !important;
} */

/* Tables */
.bg-table {
    background: #f1f1f1;
}
.table-head th {
    background: var(--linear-red) !important;
    color: white;
}
.table th:nth-child(1),
.table td:nth-child(1) {
    width: 10%;
}
.table th:nth-child(2),
.table td:nth-child(2) {
    width: 70%;
}
.table th:nth-child(3),
.table td:nth-child(3) {
    width: 10%;
    text-align:center;
}
.table th:nth-child(4),
.table td:nth-child(4) {
    width: 10%;
    text-align:center;
}
/* index page css */
.flip-card-image {
    width: 176px;
}

/* .first-row iframe,
.first-row img {
    height: 410px;
} */

.sandesh-icon img {
    max-width: 60px;
}

.inspiration-img {
    padding: 10px;
    float: left;
    width: 208px;
    display: block;
}

.prev-icon,
.next-icon {
    width: 5%;
}

.bottom-card {
    font-size: 20px;
}

.index-face {
       height: 202px;
}

.carousel-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.inspiration-item img {
    max-height: 200px;
    object-fit: cover;
}

.inspiration-content {
    padding: 1rem;
}
.inspiration-content h3 {
    font-size: 18px;
    color: #595959;
}
.head_web {
    font-size: 1.5rem;
    color: var(--text-red);
}
.inspiration-box {
    height:100%;
    background: #f5f5f5;
    border-left: 2px solid var(--text-red);
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: var(--linear-red);
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}
.carousel-indicators {
    margin-bottom: 0rem !important;
}
/* #mediaCarousel .carousel-inner {
    height: 420px;
} */
.custom-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.15);
}
.date-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--linear-green);
    color: #fff;
    padding: 5px 12px;
    border-radius: 0px 13px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}
.date-badge-petition {
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--linear-green);
    color: #fff;
    padding: 5px 12px;
    border-radius: 0px 13px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}
.file-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    background: var(--linear-red);
    color: #fff;
    padding: 5px 12px;
    border-radius: 13px 0px;
    font-size: 0.95em;
    font-weight: 500;
    text-align: center;
}
.custom-img {
    width: 120px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
}
.photo-card {
    border-radius: 10px;
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.photo-card .card-img-top {
    /* filter: grayscale(100%); */
    height:200px;
    transition: filter 0.3s ease;
}

.photo-card:hover .card-img-top {
    filter: grayscale(0%);
}

.photo-card .card-body {
    padding: 1.25rem;
    text-align: center;
}


.photo-card .card-text {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

h2 {
    font-weight: 700;
    color: #333;
}

/* PMO */
.pmo-table th:nth-child(1),
.pmo-table td:nth-child(1) {
    width: 5%;
    white-space: nowrap;
}
.pmo-table th:nth-child(2),
.pmo-table td:nth-child(2) {
    width: 20%;
}
.pmo-table th:nth-child(3),
.pmo-table td:nth-child(3) {
    width: 55%;
}
.pmo-table th:nth-child(4),
.pmo-table td:nth-child(4) {
    width: 10%;
    text-align:center;
}
.pmo-table th:nth-child(5),
.pmo-table td:nth-child(5) {
    width: 10%;
    text-align:center;
}
.letter-img {
    width: 100px;
    height: auto;
}
.download-box {
    position: relative;
}
.download-btn {
    position: absolute;
    top: 0px;
    right: 24px;
}

/* RTI */
.book-download {
    font-size: 40px;
    color: var(--text-red);
}

.amend-img {
     margin-top: 8px;
    height: 90px;
    width: 90px;
}

/* PIL */
.pil-table th:nth-child(1),
.pil-table td:nth-child(1) {
    width: 5%;
    white-space: nowrap;
}
.pil-table th:nth-child(2),
.pil-table td:nth-child(2) {
    width: 75%;
}
.pil-table th:nth-child(3),
.pil-table td:nth-child(3) {
    width: 10%;
    text-align:center;
}
.pil-table th:nth-child(4),
.pil-table td:nth-child(4) {
    width: 10%;
    text-align:center;
}
.pil-table .letter-img {
    height: 50px;
    width: 50px;
}
.pil-table .download-btn {
    font-size: 14px;
    right: 22px;
}
.achiever-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* OTP Form Styling */
.otp-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
}

.otp-btn {
    background: var(--linear-green);
    border: none;
    padding: 10px;
    color: white;
}

.otp-btn:hover {
    background: var(--linear-green);
}

/* Feature Cards */
.feature-card {
    background: var(--linear-red);
    color: #fff;
    border-radius: 12px;
    padding: 5px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.otp-inputs input {
    width: 48px;
    height: 48px;
    font-size: 20px;
    font-weight: bold;
}
.otp-inputs input::-webkit-outer-spin-button,
.otp-inputs input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Volunteer */
.volunteer-face {
    height: 153px;
}

/* Contact */
.contact-img {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    margin-bottom: 18px;
    color: var(--text-red);
}

/* RTI */
.rti-table th:nth-child(1),
.rti-table td:nth-child(1) {
    width: 10%;
    white-space: nowrap;
}
.rti-table th:nth-child(2),
.rti-table td:nth-child(2) {
    width: 20%;
}
.rti-table th:nth-child(3),
.rti-table td:nth-child(3) {
    width: 60%;
}
.rti-table th:nth-child(4),
.rti-table td:nth-child(4) {
    width: 5%;
}
.rti-table th:nth-child(5),
.rti-table td:nth-child(5) {
    width: 5%;
}

.rti-table .download-btn{
    right:0;
    font-size:14px;
}

/* Press releases details */
.press-video iframe {
    width: 100%;
    height: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.press-img img {
    width: 100%;
}

.press-pdf img {
    max-width: 80px;
    transition: transform 0.2s ease-in-out;
}

.press-pdf img:hover {
    transform: scale(1.1);
}

.press-desc {
    line-height: 1.6;
}

.press-pdf {
    padding: 16px 0px;
    background: #f3f3f3;
}

.press-date {
    background: var(--linear-green);
    color: #fff;
    padding: 8px;
    border-radius: 0px 13px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.pdf-container {
    height: 420px;
    border: 1px solid #ddd;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.fixed-col {
    position: sticky;
    top: 178px;
    overflow-y: auto;
}

/* expanded class */
.expanded {
    -webkit-line-clamp: unset;
}

/* File RTI */
.file-rti-table th {
    font-weight: 500;
}
.file-rti-table th,
.file-rti-table td {
    vertical-align: middle;
}
/* Sr. No. */
.file-rti-table th:nth-child(1),
.file-rti-table td:nth-child(1) {
    width: 3%;
}
.file-rti-table th:nth-child(2),
.file-rti-table td:nth-child(2) {
    width: 10%;
}
.file-rti-table th:nth-child(3),
.file-rti-table td:nth-child(3) {
    width: 10%;
}
.file-rti-table th:nth-child(4),
.file-rti-table td:nth-child(4) {
    width: 5%;
}
.file-rti-table th:nth-child(5),
.file-rti-table td:nth-child(5) {
    width: 10%;
}
.file-rti-table th:nth-child(6),
.file-rti-table td:nth-child(6) {
    width: 42%;
}
.file-rti-table th:nth-child(7),
.file-rti-table td:nth-child(7) {
    width: 10%;
}
.file-rti-table th:nth-child(8),
.file-rti-table td:nth-child(8) {
    width: 10%;
}


/* Petitions */

.petition-card {
    border: none;
    overflow: hidden;
}
.petition-card .card-header {
    padding: 1rem 1.5rem;
}

.petition-card .card-body {
    padding: 1.5rem;
}

.document-section {
    border: 1px solid #e9ecef;
    border-radius: 0.375rem;
    padding: 1.5rem 1rem;
    text-align: center;
    height: 100%;
    transition: border-color 0.3s ease;
}

.document-section:hover {
    border-color: var(--text-red);
}

.document-section h6 {
    color: #495057;
}

.document-icon {
    font-size: 3.5rem;
    margin: 1.25rem 0;
}

.action-buttons .btn {
    margin: 0.25rem;
    min-width: 90px;
}

/* Committee */
.org-chart .level-title {
    font-weight: 700;
    position: relative;
}

.org-chart .level-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--text-red);
    border-radius: 2px;
}

.org-chart .node-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.org-chart .node-image:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.org-chart .node-name {
    font-weight: 600;
    margin: 0;
}

.org-chart .node-title {
    font-size: 0.9rem;
    color: #6c757d;
}

.org-chart .sub-level {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.org-chart .node::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background-color: #adb5bd;
}

.org-chart .sub-level .node:first-child::after,
.org-chart .sub-level .node:last-child::after {
    width: 50%;
}

.org-chart .sub-level .node:first-child::after {
    left: 50%;
}

.org-chart .sub-level .node:last-child::after {
    right: 50%;
}

.org-chart .sub-level .node::after {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #adb5bd;
}

.org-chart .president.node::before {
    display: none;
}
.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}
.modal-body img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.human-rights-pdf {
    height: 250px;
    border: 1px solid #ddd;
}

   .file-rti-table .download-btn {
    right: 36px;
    font-size: 15px;
}
.achiever-card img{
    height:200px;
    width:200px !important;
    border-radius: 50% !important;
}
.mediamodal h5,
.achievers-modal h5 {
    text-align: left;
}
.achievers-modal .modal-body img {
   width: 140px;
    border-radius: 50% !important;
   height:140px;
}
.mediamodal .modal-content img {
    height: 140px;
    width: 140px;
    border-radius: 50% !important;
}
.pdf-icon {
    height: 45px;
}
.form-check-input:checked {
    background-color: var(--text-green) !important;
    border-color: var(--text-green) !important;
}
.media-container .tab-content>.active {
    padding-bottom: 30px;
}

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(27, 159, 221, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--text-red);
    --bs-pagination-active-border-color: var(--text-red);
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex
;
    padding-left: 0;
    list-style: none;
}

.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: var(--text-red);
    text-decoration: none;
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.page-link:hover {
    z-index: 2;
    color: var(--text-red) !important;
    background-color: var(--bs-pagination-hover-bg);
    border-color: var(--bs-pagination-hover-border-color);
}

.gap{
    gap:30px 0px;
}

/* Index */
/* .carousel-prev-1,  */
/* .carousel-next-1{
    position: absolute;
    top: 95% !important;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: end !important;
    width: 88% !important;
    padding: 0 12px !important;
    color: #fff;
    text-align: center;
    background: 0 0;
    filter: brightness(0) saturate(100%) invert(10%) sepia(96%) saturate(6880%) hue-rotate(2deg) brightness(100%) contrast(83%) !important;
    border: 0;
    opacity: .5;
    transition: opacity .15s 
ease;
} */

/* File RTI */
.file-rti-table .download-btn{
    right:36px;
}

/* Scroller */
.scroll-container {
  height: 30vh;
  padding: 10px;
  overflow: auto; 
}


.inspiration-box .carousel-control-next {
    right: 20px;
}
.inspiration-box .carousel-control-next, .inspiration-box .carousel-control-prev {
    position: absolute;
    top: 87%;
    bottom: 0;
    border-radius: 50%;
    z-index: 1;
    border: 3px solid var(--text-green) !important;
    width: 40px;
    height: 40px;
    opacity: 1;
}

.inspiration-box .carousel-control-prev {
    left: 74%;
}

/* Media */
.spokesperson-img{
    height: 140px;
    width: 140px;
    padding: 2px;
    margin: auto;
    border-radius: 50%;
    border: 2px solid #f5f5f5;
}

#getOtpBtn{
    padding:6px !important;
}

.top-180{
    top:180px;
}