html{
    overflow-x: hidden;
}
body{
    overflow-x: hidden;
    background: url(../../assets/images/body-bg.png);
    background-repeat: repeat;
    font-size:16px;
    background-color: #fff8ea;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-weight: 400;
}

.text-red{
    color: #9b1025;
}

.text-half-white{
    color: #e0e0e0;
}

.text-blue{
    color: #3F51B5 !important;
}

.fs12{
    font-size: 12px;
}

.text-gold{
    color: #cf831a;
}

#advisory-team{
    scroll-margin-top: 100px;
}

/* Top Header */

.top-header{
    background-image: url(../../assets/images/thoranam-bg.png);
    width: 100%;
    height: 13px;
    background-repeat: repeat-x;
}

.top-header a{
    font-size: 13px;
    line-height: 11px;
    position: absolute;
    top: 8px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

/* Header */

nav.navbar.navbar-expand-lg.navbar-dark.py-0.telugu ul li{
    font-size: 14.6px;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    left: 12%;
}

.header-menubg {
    background: #ED2C25 url(../../assets/images/header-menubg.png) top left repeat-x;
    height: 60px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    color: rgb(255 255 255);
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: 500;
}
.navbar-nav li.nav-item {
    padding: 10px 25px;
}
.navbar-nav li.nav-item, .navbar-nav li.nav-item.dropdown {
    position: relative;
    background: url(../../assets/images/main-nav-sep.png) right top no-repeat;
}
.navbar-nav li.nav-item:last-child {
    position: relative;
    background: none;
}
.dropdown-toggle::after {
    display: inline-block;
    border-top: 0em solid;
    border-right: 0em solid transparent;
    border-bottom: 0;
    border-left: 0em solid transparent;
}
.nav-item .nav-link  i.fa-chevron-down:before{
    font-size: 10px;
    position: relative;
    top: -1px;
    left: 8px;
}
.header-inner {
    padding: 3px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.header-title {
    flex: 1;
    text-align: center;
    min-width: 220px;
}
.logo-badge {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    object-fit: cover;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}
.url-in-header{
    color: #9b1025;
    font-family: serif;
    text-decoration: none;
    text-transform: uppercase;
}
.id-no-in-header{
    color: #9b1025;
    font-family: serif;
    text-decoration: none;
    text-transform: uppercase;
}
.shimmer-text {
    font-family: "Cinzel Decorative", cursive;
    font-size: clamp(1rem, 3.5vw, 2rem);
    font-weight: 900;
    line-height: 1.3;
    color: #6a010f;
    /*background: linear-gradient(135deg, #F5C842 0%, #D4A017 50%, #8B6914 100%);*/
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(212, 160, 23, 0.5));
    margin: 4px 0;
    animation: shimmer 4s linear infinite;
    text-align: center;
    /*-webkit-text-fill-color: transparent;*/
}
.widtitle{
    background-color: #9b1025;
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 4px;
    border-radius: 5px;
}
.leftside-menu-block{
    padding: 5px 10px;
    background: #940712;
    border-radius: 10px;
}
.side-section-projects-block, .rightside-section-block, .side-section-members-block{
    /*border: 1px solid #e82323;
    padding: 5px 10px;*/
}
.side-section-projects-block img{
    border: 2px solid #cf831a;
    border-radius: 5px;
    /*padding: 3px;
    background-color: #fef100;*/
}
.side-section-members-block .mem-name{
    text-align: center;
    font-size: 14px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.side-section-members-block .mem-role{
    text-align: center;
    font-size: 14px;
}

/* Carousel */

.carousel-bg {
    margin: 0px auto;
    background-color: #cf831a;
    padding: 5px;
    border-radius: 10px;
}
.carousel-bg .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border: 3px solid #E9E9E9;
    border-radius: 100%;
}
.news-ticker {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.news-label {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 18px;
    padding: 0 0px;
    /* background: #f3fffa; */
    z-index: 2;
    border-right: 1px solid #cf831a;
    padding: 0px 15px 0px 10px;
}

.marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: ticker 15s linear infinite;
}

.marquee-content {
    white-space: nowrap;
    padding-right: 50px;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.logo-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollLogos 20s linear infinite;
}

.logo-track .py-1 {
    flex-shrink: 0;
    padding: 0 5px;
}

.logo-track img {
    height: 80px; /* Adjust as needed */
    width: auto;
    display: block;
    border: 0px !important;
    background: transparent;
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}
.highlight-link {
    padding: 5px 10px;
    z-index: 9;
    text-align: center;
    border: solid thin #cf831a;
    position: relative;
    top: 0;
    /* background: #f3fffa; */
    line-height: 18px;
    border-radius: 8px;
}
.highlight-link i {
    background-color: #6a010f;
    border-radius: 100%;
    color: #ffe4ac;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.content-list a{
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
}
.content-list{
    background-color: #6a010f;
    color: #fff;
    padding: 10px 8px;
    border-radius: 8px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 16px;
    border: 1px solid #b43a36;
}
.content-list i{
    font-size: 15px;
    width: 25px;
    color: #ffe4ac;
}
.events-widget{
    display: flex;
    justify-content: center;
    align-items: center;
}
.events-widget .event-date {
    padding-bottom: 6px;
}
.events-widget .event-date .event-month {
    color: #FFF;
    background-color: #EC5237;
    text-transform: uppercase;
    line-height: 16px;
    font-size: 10px;
    padding: 2px 8px;
    font-weight: 500;
}
.events-widget .event-date .event-day {
    color: #333;
    background-color: #e5e5e5;
    display: block;
    text-align: center;
    font-weight: 500;
    line-height: 18px;
    height: 20px;
}


.leadership-card{
    box-shadow: 0 0.5rem 2rem rgb(255 0 0 / 12%) !important;
    height: 100%;
}

.leadership-card img{
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #bd1800, darkorchid) border-box;
    border-radius: 10px;
    border: 4px solid transparent;
    padding: 3px;
}

.donor-card{
    position: relative;
    box-shadow: 0 0.5rem 2rem rgb(255 0 0 / 12%) !important;
    /* height: 100%; */
    border-radius: 6px;
    background-image: linear-gradient(90deg, #ab0e02 20%, #f73f00 80%);
    padding: 33px 30px 25px 30px;
    z-index: 99999;
    color: #fff;
}
.donor-card i{
    color: #e0e0e0;
}
.mandala-img{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -9;
    width: 110px;
}
/* Gallery */

.gallery-div img{
    border-radius: 5px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.card {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
    color: #333333;
    border-radius: 2px;
}
.card-image {
    background: #ffffff;
    display: block;
    padding-top: 70%;
    position: relative;
    width: 100%;
}
.card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.team-details li{
    position: relative;
}
.team-data{
    position: absolute;
    left: 22px;
}
input::placeholder {
    color: #a9a9a9 !important;
}

textarea::placeholder {
    color: #a9a9a9 !important;
}
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "\f078"; /* fa-chevron-down */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
}
.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #d40000 !important;
}
.form-check-input:checked {
    background-color: #d40000 !important;
}
.form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgb(212 0 0 / 25%);
}

.privacy-section {
    padding: 80px 0;
}

.privacy-content h1 {
    font-weight: 700;
    margin-bottom: 10px;
}

.privacy-content h4 {
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #d40000;
}

.privacy-content p,
.privacy-content li {
    line-height: 1.6;
}

.privacy-content ul {
    padding-left: 20px;
}

.contact-box {
    background: #ffdada;
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .privacy-section {
        padding: 50px 0;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
    }
}
/*.marquee-inner span{
    height:50%;
}
.marquee-inner.to-top{
    animation: marqueeTop 20s linear infinite;
}
.marquee-block{
    width: 100%;
    height: 50vh;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}
.marquee-inner{
    display: block;
    height: auto;
    width:100%;
    position: absolute;
}
.marquee-item p{
    font-weight: 500;
    font-size: 12px;
}
.marquee-inner:hover {
    animation-play-state: paused;
    cursor: context-menu;
}
.marquee-item{
    width: auto;
    height: auto;
    display: block;
    transition: all .1s ease-out;
}
@keyframes marqueeTop{
    0% {
      top: 0;
    }
    100% {
      top: -100%;
    }
}*/

/* Footer */

footer{
    background: #6a010f;
    color: #fff;
    border-top: 4px solid #cf831a;
}
.footer-title{
    text-transform: uppercase;
    color: #fff100;
    margin-bottom: 15px;
}
.footer-links{
    padding-top: 5px;
    padding-bottom: 5px;
}
.footer-links a{
    text-decoration: none;
    color: #fff;
}
.footer-subscribe-btn{
    background-color: rgb(232 35 35 / 75%);
    color: #fff;
    text-transform: uppercase;
    border-radius: 3px;
    padding-left: 30px;
    padding-right: 30px;
}
.footer-subscribe-btn:hover, .footer-subscribe-btn:focus{
    background-color: #EC5237;
    color: #fff;
}
.footer-icons a i {
    font-size: 12px;
    margin-right: 10px;
    text-align: center;
    width: 32px;
    height: 32px;
    color: #ffe4ac;
    line-height: 32px;
    border: 2px solid #ffe4ac;
    line-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
}
footer i{
    color:  #ffe4ac;
}
footer .border-right-o3{
    border-right: 1px solid rgb(255 255 255 / 30%);
}
.footer-icons a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.footer-icons a.facebook i{
    background: #3b5998;
}
.footer-icons a.twitter i{
    background: #47adfa;
}
.footer-icons a.youtube i{
    background: #FF0000;
}
.footer-bottom {
    background: #9b1025;
    color: #fff;
}
.footer-bottom-menu{
    color: #112953;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
}
.form-control {
    padding: .7rem .75rem;
}
.form-control:focus{
    border-color: #e82323;
    box-shadow: none;
}
.address-block{
    background-color: #fff;
    padding: 20px 15px;
    border-radius: 5px;
    align-items: center;
    display: flex;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .navbar-nav li.nav-item {
        padding: 10px 10px;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        align-items: center;
        justify-content: center;
    }
}
@media (max-width: 991px){
    .navbar-nav li.nav-item, .navbar-nav li.nav-item .dropdown {
        background: #6a010f;
        border-bottom: 2px solid rgb(255 228 172) !important;
    }
    .navbar-nav .nav-link.active, .navbar-nav .dropdown-toggle.active {
         border-bottom: 0px solid !important; 
    }
    .navbar-nav li.nav-item {
        padding: 10px 20px;
    }

    .header-menubg {
        position: relative;
        z-index: 1000;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 9999;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px;
    }

    .news-label {
        padding: 0px 7px 0px 0px;
    }
     footer .border-right-o3{
        border-right: 0px solid !important;
    }   
}

@media (max-width: 768px){
    .navbar-nav li.nav-item, .navbar-nav li.nav-item .dropdown {
        background: #6a010f !important;
    }
    .logo-badge {
        width: 70px;
        height: 70px;
    }
    .header-title {
        font-size: 16px;
    }
    .coming-soon-content h1 {
        font-size: 36px;
    }
    .member-header{
        flex-direction:column;
        text-align:center;
        gap: 25px !important;
    }
    .member-info .team-data{
        position: static;
    }
    footer .border-right-o3{
        border-right: 0px solid !important;
    }
}

@media (max-width: 576px) {
    /*.side-section-projects-block {
        border: 1px solid #e82323;
        padding: 3px 6px;
    }*/
    .member-header, .mem-description{
        padding: 20px 20px 0px 20px !important;
    }
    .member-header{
        gap: 20px !important;
    }
    .shimmer-text {
        margin-bottom: 0px !important;
    }
    .url-in-header, .id-no-in-header{
        font-size: 10px !important;
        line-height: 30px;
    }
}

/*Coming Soon Page CSS*/

.coming-soon-section {
    min-height: calc(100vh - 160px); /* Adjust based on header + footer height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.coming-soon-content h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
    font-style: italic;
    font-family: var(--bs-body-font-family);
}

.member-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.member-header{
    display:flex;
    align-items:center;
    gap:25px;
    padding:40px 40px 0px 40px;
}

.member-image{
    width: 170px;
    height: 170px;
    background: linear-gradient(to left, #9b1025, #cf831a) !important;
    border-radius: 100%;
    padding: 5px;
}

.member-image img{
    width:160px;
    height:160px;
    border-radius:50%;
    object-fit:cover;
    background: #ffffff;
    padding: 5px;
}

.member-info p{
    margin-bottom:10px;
    position: relative;
}

.mem-description{
    padding:40px;
}

ul.abt-members li{
    margin-bottom: 10px;
}


@media (max-width: 350px) {
    .shimmer-text {
        font-size: 12px;
    }
}