body {
    overflow-x: hidden;
}
.dwnldapp{
    display: none;
}
/* banner css start */
.sub-banner {
    background-image: url(../img/about/sub-banner.webp);
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px 10px 10px 20px;
    /*margin-right: 100px;*/
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}
.sub-banner h2 {
    font-size: 36px;
    font-weight: bold;
    color: #2a2a2a;
}
.sub-banner-cmpd {
    padding: 5px 0px 0px 0px;
}
.breadcrumbs {
    display: flex;
    gap: 5px;
    align-items: center;
}
.breadcrumbs a {
    text-decoration: none;
    color: #5a5a5a;
    font-size: 16px;
    font-weight: 400;
}
.breadcrumbs p {
    text-decoration: none;
    color: #5a5a5a;
    font-size: 16px;
    font-weight: 400;
}
.breadcrumbs p.active {
    color: #0cb60c !important;
}
/* banner css end */
/* profile section css start */
.profile-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}
/* profile section css end */

/* who is who section css start */
.info {
    font-size: 16px;
    color: #5a5a5a;
    font-weight: 400;
}

/* Table outer wrapper for scroll */
.table-wrapper {
    overflow-x: auto;
    background-color: #fff;
    border-radius: 6px 6px 0px 0px;
    margin-bottom: 30px;
}

/* Main table styles */
.who-is-who-box table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

/* Table head */
.who-is-who-box thead {
    background-color: #e7f3e7;
}

/* Table cells */
.who-is-who-box th,
.who-is-who-box td {
    padding: 14px 16px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* Table header cells */
.who-is-who-box th {
    font-weight: 600;
    color: #2a2a2a;
    font-size: 14px;
    font-weight: 500;
    /*white-space: nowrap;*/
    border: 1px solid #e7f3e7;
}

/* Bold text inside cells */
.who-is-who-box td strong {
    display: block;
    color: #5a5a5a;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 500;
}
.who-is-who-box td p {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 4px;
    color: #5a5a5a !important;
}
/* Pagination container */
.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 14px;
}
.pagination button,
.pagination .dots {
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: white;
    color: #333;
    cursor: pointer;
    min-width: 36px;
    text-align: center;
}
.page-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #eeeeee !important;
}
/* Pagination buttons */
.pagination span,
.pagination a,
.pagination button {
    display: inline-block;
    border-radius: 40px;
    text-decoration: none;
    color: #2a2a2a;
    border: 0px;
    padding: 6px 10px !important;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.pagination button:hover:not(.active):not(:disabled),
.pagination a:hover:not(.active) {
    color: #0cb60c;
}

/* Active page button */
.pagination .active {
    background-color: #00b050;
    color: white;
    border-color: #00b050;
}

/* Disabled buttons */
.pagination .disabled,
.pagination button:disabled {
    color: #2a2a2a8a;
    pointer-events: none;
}


.pagination li{
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 6px 10px !important;
    cursor: pointer;
    transition: all 0.2s 
ease-in-out;
    display: inline-block;
    border-radius: 40px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination li span{
    background: transparent!important;
}

/*mytable*/
/* Main table styles */
.mytable table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

/* Table head */
.mytable thead {
    background-color: #e7f3e7;
}

/* Table cells */
.mytable th,
.mytable td {
    padding: 14px 16px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* Table header cells */
.mytable th {
    font-weight: 600;
    color: #2a2a2a;
    font-size: 14px;
    font-weight: 500;
    /*white-space: nowrap;*/
    border: 1px solid #e7f3e7;
}

/* Bold text inside cells */
.mytable td strong {
    display: block;
    color: #5a5a5a;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 500;
}
.mytable td p {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 4px;
    color: #5a5a5a !important;
}

















/* Responsive tweaks */
@media screen and (max-width: 768px) {
    .who-is-who-box table {
        font-size: 13px;
        min-width: 100%;
    }

    .pagination {
        font-size: 13px;
        gap: 6px;
    }

    .pagination span,
    .pagination a,
    .pagination button {
        padding: 5px 10px;
    }

    .info {
        font-size: 13px;
    }
}
/* who is who section css end */

/* Organisational Structure section css strat */
.Organisational-box {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
}
.Organisational-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Organisational Structure section css end */

/* contact css start  */
.contact-box {
    border: 1px solid #c8ede6;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
}
.contact-box:hover {
    border: 1px solid #00b050;
}
.contact-box h6 {
    color: #373737;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 0px;
}
.contact-box p {
    font-size: 15px;
    font-weight: 400;
    color: #4a4a4a;
    margin-bottom: 0px;
    line-height: 28px;
}
.contact-box p a {
    font-size: 15px;
    font-weight: 400;
    color: #4a4a4a;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.contact-box p a:hover {
    color: #0cb60c;
}
.contact-mail {
    color: #0cb60c !important;
    transition: all 0.3s ease;
}
.contact-mail:hover {
    color: #4a4a4a !important;
}
/* contact css end  */
/* Latest Updates css start */
.events-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.events-box:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.l-updates-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}
.l-updates-date {
    font-size: 16px;
    color: #00b050;
    font-weight: 400;
    border-radius: 3px;
    border: 1px solid #00b050;
    padding: 4px 10px;
}

.share-button {
    background-color: transparent;
    color: #00b050;
    border-radius: 3px;
    border: 1px solid #00b050;
    width: 30px;
    height: 30px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 10px;
    transition: all 0.3 ease;
}
.share-button:hover {
    background-color: #00b050;
    color: #fff;
}
.l-updates-head {
    font-size: 25px;
    font-weight: 500;
}
.l-updates-related-head {
    font-size: 20px;
    font-size: 500;
}
.related-box {
    width: 100%;
    border: 1px solid #c8ede6;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.related-box:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.related-box img {
    width: 100%;
    height: 65px;
    object-fit: cover;
    object-position: center;
    border-radius: 3px;
}
.related-box p {
    font-size: 13px;
    color: #2a2a2a;
    margin-bottom: 0px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 20px;
}
.related-box p span {
    color: #00b050;
}

/* Latest Updates css end */

/* result css strat  */
.btn-bg4{
    background-color: #fc19164d !important;
    color: #fc1916 !important;
}
.lotteryContainer-box {
    padding: 20px;
    border-radius: 10px;
    margin: 10px 40px;
}
.banner-sub-form-box .tab-content-box {
    background-color: #ffffff;
    padding: 11px;
    border-radius: 9px;
    margin-top: -28px;
    border: 1px solid #eeeeee;
}
.banner-sub-form-box .form-select {
    border: 0px;
}
.banner-sub-form-box .form-select:focus {
    border: 0px;
}
.new {
    border: 1px solid #fc1a16b9 !important;
}
.new img {
    display: block !important;
    margin-top: -10px;
    margin-left: 15px;
}
.result-border img {
    display: none;
}
.result-bg {
    background-image: url(../img/images/result-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}
.heading span {
    color: #fc1916;
}
.result-page-lanuage {
    background-color: #d3f2d3 !important;
    border-radius: 10px !important;
    border: 1px solid #0cb60c !important;
    width: fit-content !important;
}
.latest-result-timings {
    text-decoration: none;
}
.latest-result-timings .timings-icons {
    font-size: 13px;
    font-weight: 500;
    color: #0cb60c;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    background-color: #00b04f60;
}
.latest-result-timings span {
    font-size: 16px;
    font-weight: 500;
    color: #2a2a2a;
}
.timings-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}
.timings-flex .tab-content-box {
    margin-top: 0px;
    padding: 5px;
    background-color: #fff;
    border: 1px solid #eeeeee;
}
.timings-flex .form-select {
    border: 0px !important;
}
/* first */

.First-Prize-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffe5 0%, #feffef 100%);
    border: 2px solid #f8db60;
    margin-top: 20px;
}

.winner-image {
    width: 100%;
    height: 375px;
    object-fit: contain;
}

.first-prize-amount {
    font-size: 20px;
    font-weight: 600;
    color: #2a2a2a;
}

.first-prize-amount span {
    color: #0cb60c;
    font-size: 34px;
    font-weight: 700;
}

.winning-ticket-label {
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 600;
    color: #5a5a5a;
    margin-top: 15px;
    margin-bottom: 10px;
}

.ticket-number {
    display: flex;
    gap: 8px;
    font-size: 20px;
    margin-bottom: 10px;
    justify-content: center;
}

.ticket-number span {
    background: #fc1a1609;
    color: #fc1916;
    border-radius: 6px;
    padding: 10px;
    font-weight: 700;
    font-size: 34px;
    border: 1px solid #fc1916;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 500;
    color: #555;
    margin-bottom: 20px;
    justify-content: center;
}

.location .lcn-icon {
    color: #fc1916 !important;
}

.consolation-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.consolation-title span {
    color: green;
}

.consolation-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.consolation-item {
    background: transparent;
    border: 1px solid #fc1a1663;
    border-radius: 8px;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 16px;
    color: #2a2a2a;
}

@media (max-width: 768px) {
    .ticket-number {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* second */
.second-prize-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: none;
    margin-top: 20px;
}

.ticket-left {
    position: relative;
}

.ticket-left img {
    width: 320px;
    border-radius: 10px;
    margin-right: -20px;
}

.prize-box {
    background: linear-gradient(90deg, #faf8f7, #fbfbfb);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    border: 3px solid #d7d7d7;
}

.prize-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
}
.prize-title span {
    color: #03a103;
    font-weight: 700;
    font-size: 24px;
}

.prize-box .ticket-label {
    font-size: 16px;
    letter-spacing: 4px;
    color: #5a5a5a;
    margin: 12px 0 10px;
}

.prize-box .ticket-number {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.prize-box .ticket-number span {
    background: #fff4f4;
    color: #fc1916;
    border-radius: 8px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 18px;
    border: 1px solid #f1d6d6;
}

.prize-box .location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.prize-box .location i {
    color: #fc1916;
}

@media (max-width: 768px) {
    .second-prize-container {
        flex-direction: column;
        align-items: center;
    }

    .ticket-left img {
        transform: none;
    }

    .prize-box {
        text-align: center;
    }

    .prize-box .ticket-number {
        justify-content: center;
    }
}
/* Third Prize */
.third-prize-box {
    background: linear-gradient(90deg, #fff9ef, #fffdf9);
    padding: 30px;
    border-radius: 20px;
    margin: auto;
    width: 100%;
    margin-top: 20px;
    border: 3px solid #c6a88a;
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.prize-item {
    text-align: center;
}

.prize-ticket {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #fc1a1628;
    border-radius: 8px;
    font-weight: 600;
    color: #2a2a2a;
    background: #fff;
    font-size: 16px;
    margin-bottom: 4px;
}

.prize-location {
    font-size: 14px;
    color: #5a5a5a;
    font-weight: 400;
}

@media (max-width: 768px) {
    .prize-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .prize-grid {
        grid-template-columns: 1fr;
    }
}

/* 45678 price */
.result-ending-section {
    background: linear-gradient(90deg, #f6fffd, #f9fbff);
    padding: 50px 20px 40px 20px;
    border-radius: 16px;
    border: 3px solid #9dd6e5;
    width: 100%;
}

.result-title {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    padding: 10px 20px;
    background-color: #fff;
    display: inline-block;
    border-radius: 10px;
    border: 2px solid #9dd6e5;
    color: #2a2a2a;
    margin-top: 30px;
    margin-bottom: -30px;
}

.prize-block {
    margin-bottom: 40px;
}

.number-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.number-box {
    padding: 10px 16px;
    background-color: transparent;
    color: #2a2a2a;
    font-weight: 500;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: inset 0 0 0 1px #cce6f7;
    min-width: 70px;
    text-align: center;
}

@media (max-width: 768px) {
    .number-box {
        min-width: 60px;
        font-size: 13px;
    }
}
.download-btn {
    color: #03a103;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.download-btn:hover{
    color: #2a2a2a;
}
/* result css end  */

/* gallery css start */
.galley-head-box {
    background-color: #00b050;
    padding: 20px;
    border-radius: 30px 0px 30px 0px;
}
.galley-head-box p {
    margin-bottom: 0px;
    color: #fff;
}
.gallery-box {
    width: 100%;
    height: 260px;
    border-radius: 10px;
}
/* gallery css end */

/* faq css start */
.accordion-button::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f067"; /* plus icon */
    background-image: none !important;
    font-size: 20px;
    margin-left: auto;
    color: #2a2a2a;
}
.accordion-button:not(.collapsed)::after {
    content: "\f068"; /* minus icon */
}
.accordion-button {
    background-color: #0cb60c1c;
    border-radius: 20px 0px !important;
    font-size: 17px;
}
.accordion-item {
    border-radius: 20px 0px !important;
    margin-bottom: 10px;
    border: 0px solid;
}
.accordion-button:focus {
    box-shadow: 0 0 0 0 var(--bs-accordion-btn-focus-box-shadow) !important;
}
.accordion-button:not(.collapsed) {
    /*background-color: #2a2a2a31;*/
    background-color: #fc1a1614;
    
    color: #2a2a2a;
}
/* faq css end */

/* privacy policy css start */
.privacy-bg {
  background-color: #0cb60c15;
  padding: 50px;
  border-radius: 10px;
}

/* privacy policy css end */
/* Tenders css start */
.tenders-search-box {
    display: flex
;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.tenders-search-box input {
     border: 1px solid #0cb60c1c;
    background: #e9f7e9;
    padding: 7px 20px;
    border-radius: 6px;
        padding-right: 40px;
}

.tenders-search-box input::placeholder {
  color: #2a2a2a;
}

.tenders-search-box .tenders-search {
  min-width: 280px;
}

.tenders-search-box button {
  background-color: #0cb60c;
  border: 1px solid #0cb60c;
  font-size: 14px;
  border-radius: 6px;
  color: #fff;
  width: 37px;
  transition: all 0.3s ease;
}

.tenders-search-box button:hover {
  border: 1px solid #0cb60c;
  background-color: #fff;
  color: #0cb60c;
  border-radius: 6px;
}

.tenders-search-box select {
  border: 1px solid #0cb60c;
  color: #2a2a2a;
}

.tenders-date-box p {
  white-space: nowrap;
}

.tenders-date-box i {
  color: #0cb60c;
  font-size: 15px;
}

.tenders-pdf-box {
  background-color: #0cb60c1c;
  border-radius: 20px 0px !important;
  padding: 10px 20px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.tenders-contant-box {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tenders-icons {
  color: #0cb60c;
  text-decoration: none;
  font-size: 20px;
}

.tenders-icons:hover {
  color: #1e8fff;
  text-decoration: none;
}
.datefld{
    width: 40px;
   border: 1px solid #0cb60c1c;
    background: #e9f7e9;
    border-radius: 6px;
    position: relative;
  float: left;
}
.datefld input{
    border: 1px solid transparent!important;
    padding: 0!important;
    border-radius: none!important;
}


.datefld .sd {
  padding: 5px 10px;
  height: 38px;
  width: 31px;
}

.datefld .open-button {
  position: absolute;
  top: 7px;
  right: 13px;
  width: 25px;
  height: 28px;
  background: #e9f7e9;
  pointer-events: none;
}

.datefld .open-button button {
  border: none;
  background: transparent;
}

.tenders-search-box input[type=date]::-webkit-datetime-edit-text {
    -webkit-appearance: none;
    display: none;
}
.tenders-search-box input[type=date]::-webkit-datetime-edit-month-field{
    -webkit-appearance: none;
    display: none;
}
.tenders-search-box input[type=date]::-webkit-datetime-edit-day-field {
    -webkit-appearance: none;
    display: none;
}
.tenders-search-box input[type=date]::-webkit-datetime-edit-year-field {
    -webkit-appearance: none;
    display: none;
}



/* Tenders css end */
/* complaints css strat */
.complaints-box {
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #0cb60c1c;
  border-radius: 10px;
}

.complaints-box input {
  width: 100%;
  border-radius: 6px;
  padding: 10px 20px;
  margin-top: 15px;
  font-size:16px;
}

.complaints-box textarea {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #eeeeee;
  padding: 10px 20px;
  margin-top: 15px;
  outline: none;
  font-size:16px;
}

.complaints-box button {
  padding: 8px 20px;
  background-color: #0cb60c;
  border: 1px solid #0cb60c;
  color: #fff;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin-top: 0px;
  font-size:16px;
}

.complaints-box button:hover {
  padding: 8px 20px;
  border: 1px solid #0cb60c;
  background-color: #fff;
  color: #0cb60c;
}

.complintfull{
   display: flex
;
    align-items: center;
}
.complintfull .complaint-img{
    width: 34%;
    /* height: 450px; */
    background: #fff;
    box-shadow: 0px 0px 11px #00000017;
    border-radius: 30px;
    display: flex
;
    align-items: center;
    justify-content: center;
    z-index: 1;
        padding: 20px;
}
.complintfull .complaint-img img{
        max-width: 100%;
}
.complintfull .complaints-box{
   width: calc(100% - 34%);
    background-color: #f5fff5 !important;
    padding: 45px;
    border-radius: 25px;
    padding-left: 80px;
    margin-left: -32px;
}
.complintfull .complaints-box input {
        background: #e7f8e7;
    border: 1px solid #ceeece !important;
    background: #e7f8e7;
        padding: 14px 20px;
    border-radius: 8px !important;
}
.complintfull .complaints-box textarea{
     background: #e7f8e7;
    border: 1px solid #ceeece !important;
    background: #e7f8e7;
        padding: 14px 20px;
    border-radius: 8px !important;
}
.complintfull .complaints-box select{
    width: 100%;
     background: #e7f8e7;
    border: 1px solid #ceeece !important;
    background: #e7f8e7;
        padding: 14px 20px;
    border-radius: 8px !important;
    margin-top: 15px;
  font-size:16px;
   color: #757575;
   outline: none!important;
}


@media (max-width: 991px){
    .complintfull{
        flex-direction: column;
        gap: 15px;
    }
    .complintfull .complaint-img{
        width: 100%;
    }
    .complintfull .complaints-box{
        width: 100%;
        margin-left: 0;
        padding: 30px!important;
    }
    .complants-bg{
        padding: 10px;
    }
}



/* complaints css end */
/* search box css start */
.search-result-box {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
        rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    padding: 20px;
    border-radius: 10px;
}
.search-result-show-box {
    border-radius: 10px;
    margin-top: 10px;
    border: 1px solid #0cb60c27;
    padding: 10px 20px;
}
.serchtndr{
    position: relative;
}
.serchtndr button{
    right: 0;
    height: 100%;
    position: absolute;
}


.result-slide-box {
    margin-bottom: 50px;
    border-bottom: 1px dashed #0cb60c62;
    /* padding: 12px; */
    border-radius: 10px;
    padding-bottom: 50px;
    padding-top: 12px;
    background: #cbedd821;
}
.result-slide-box .bg-white{
       background: #f8fdfa!important;
}

/* search box css end */


  .career-img{
            width:100%;
          height: 450px;
              object-fit: contain;
        }
        .career-box{
        border-left: 3px solid #4c834c;
    margin-top: 20px;
    padding: 30px 15px;
    background: #e7f8e7;
    border-radius: 15px;

        }
        
        .cr-flex{
             display: flex
;
    flex-direction: column;
    justify-content: center;
        height: 100%;
        }
        .main-btn{
                width: fit-content;
        }
        .career-box h4{
            font-size: 20px;
    font-weight: 500;
    color: #4a4a4a;
        }
        
        #careersModal .modal-dialog{
            max-width: 780px;
        }
        
        .career-modal{
    padding: 20px;
       border-radius: 50px 10px 20px 6px;
    background: linear-gradient(90deg, #ffc2bb 0%, #fddbea 100%);
}
.form-control:focus {
    border: 0px;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25);
}
        .btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}
.career-submit-btn{
    padding: 8px 20px;
    background-color: #0cb60c;
    border: 1px solid #0cb60c;
    color: #fff;
    transition: all 0.3s 
ease;
    border-radius: 6px;
    margin-top: 0px;
    font-size: 16px;
}



.downloadcard{
    display: flex
;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    position: relative;
}

.cardicn{
  background: linear-gradient(    135deg,    rgba(253, 168, 165, 1) 0%,    rgba(246, 8, 0, 1) 100%  );
  width: 60px;
    height: 60px;
  border-radius: 50%;
  z-index: 1;
  
}
.cardicn img {
     width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}
.downloadcard .contn {
     padding: 36px 30px 30px 30px;
    border-radius: 10px;
    border: 1px solid #eeeeee;
    width: 100%;
    margin-top: -25px;
}
.downloadcard .contn p{
     font-size: 18px;
}
   

.pdf-controls{
   display: flex
;
    justify-content: center;
    align-items: center;
    gap: 15px; 
}
    
.pdfrdr{
    max-width: 660px;
    border-radius: 16px;
    border: 4px solid #9dd6e5;
}
.pdf-controls #prev-page{
    background: #cef0ce;
    border: none!important;
}
.pdf-controls #next-page{
   background: #0cb60c;
    color: #fff; 
}


@media (max-width: 767px){
   .sub-banner-cmpd{
        padding:5px 0px 0px 0px;
    }
    .sub-banner{
        margin-right: 0px;
    } 
}
/*=============tab css============*/
.my-tabs{
    justify-content: center;
    border: 0px;
   
}
.my-tabs .nav-link.active {
     color: #0cb60c ;
    border-bottom: 2px solid #0cb60c !important;
}
.my-tabs .nav-link{
        color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    outline: none !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    cursor: pointer;
    padding: 4px 21px;
}
.my-tabs .nav-link:hover {
    color: #0cb60c;
    border-bottom: 2px solid #0cb60c !important;
}
.my-tabs-content-box{
    padding: 50px;
    border-left: 3px solid #4c834c;
    border-right: 3px solid #4c834c;
    margin-top: 0px;
    border-radius: 20px;
}


.welcomprof{
max-width: 200px;
}
.photo-box img{
height: auto;}
 .about-photo-box{
            width: 100%;
            position: relative!important;
gap: 20px!important;
    justify-content: center;
        }






.mytabnav{
display: flex;
flex-direction: column;
gap: 10px;
    border: none !important;
}
.mytabnav .nav-link{
   border: none;
    padding: 12px 15px;
border-radius: 6px;
    background: #ebf9eb;
   
transform: scale(1);
    transition: all .3s 
ease;
    -webkit-transition: all .3s 
ease;
}

.mytabnav .nav-link:hover{
background: #c2e1c2;
color: #2a2a2a;
transform: scale(1.04);
 transition: all .3s 
ease;
    -webkit-transition: all .3s 
ease;
    background: #d7ecd7;
}


.mytabnav .nav-link.active{
transform: scale(1.04);
    transition: all .3s 
ease;
    -webkit-transition: all .3s 
ease;
    background: #c2e1c2;
}




.mylist,
.sublist,
.genlist {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 0px;
    list-style-type: none;
}
.mylist li,
.sublist li,
.genlist li {
    position: relative;
    padding-left: 20px;
font-size: 0.95rem;
        color: #666;
        font-weight: 400;
}
.mylist li a,
.sublist li a,
.genlist li a {
    color: #666;
text-decoration: none!important;
}

.mylist li:before,
.sublist li:before,
.genlist li:before {
    content: "";
    position: absolute;
    left: 0;
    
    width: 10px;
    height: 10px;
    background: #61a46c;
    transform: rotate(45deg);
    margin-top: 5px;
}

.mylist li > ul,
.genlist li > ul {
    margin: 0.5rem 0;
}
.mylist li > ul > li,
.genlist li > ul > li,
.sublist li {
    padding-left: 15px;
}
.mylist li > ul > li:before,
.genlist li > ul > li:before,
.sublist li:before {
        background-color: #61a46cd9;
    border-radius: 30px;
    transform: rotate(0deg);
    width: 8px;
    height: 8px;
    margin-top: 7px;
}

.sitemap h4 a{
color: #2a2a2a;
text-decoration: none !important;
}




@media (max-width: 767px){
.mytabnav{
flex-direction: row;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
overflow-y: hidden;
}
}








