/* slokam and right float pane */
  .float-panel {
    position: fixed;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    background: #dc5736;
    padding: 8px;
    border-radius: 8px;
    display: none;
    /* hidden by default */
    flex-direction: column;
    gap: 8px;
    z-index: 999999;
  }

  .float-item {
    width: 32px;
    height: 32px;
    background: #f8b238;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    position: relative;
    text-decoration: none;
  }

  .float-item i {
    font-size: 18px;
  }

  .float-item span {
    position: absolute;
    right: 44px;
    background: #f1a727;
    color: #fff;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: .2s;
  }

  .float-item:hover span {
    opacity: 1;
  }


  /* end */

  /* hd ive */
  .temple-mobile-icon {
    background: #fff4e0;
    border-radius: 50%;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }

  /* Curved HD Live text */
  .hd-live-text {
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 12px;
    font-weight: 700;
    top: -10px;
    color: red;
    text-transform: uppercase;
    pointer-events: none;
  }

  .hd-live-text span {
    position: absolute;
    left: 50%;
    top: 5px;
    transform-origin: 0 50px;
  }

  /* Rotate each letter */
  .hd-live-text span:nth-child(1) {
    transform: rotate(-40deg);
  }

  .hd-live-text span:nth-child(2) {
    transform: rotate(-25deg);
  }

  .hd-live-text span:nth-child(3) {
    transform: rotate(-10deg);
  }

  .hd-live-text span:nth-child(4) {
    transform: rotate(5deg);
  }

  .hd-live-text span:nth-child(5) {
    transform: rotate(20deg);
  }

  .hd-live-text span:nth-child(6) {
    transform: rotate(35deg);
  }

  .hd-live-text span:nth-child(7) {
    transform: rotate(50deg);
  }

  .ripple::before {
    background-color: white !important;
  }

  /* end */

  /* testimonial */
  .testimonial-box {
    background-color: #fff4e6;
    /* Custom background */
    border: 2px solid #ffe2da;
    /* Custom border */
    border-radius: 12px;
    /* Rounded corners */
    /* padding: 20px; */
  }

  /* end */

  /* nityadarshanam */
  /* Main image wrapper */
  .nd-wrapper .nd-img-wrapper {
    position: relative;
  }

  /* Main image */
  .nd-wrapper .nd-main-img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
  }

  /* Top-right name badge */
  .nd-wrapper .nd-name-badge {
    position: absolute;
    top: 10px;
    right: 10px;

    padding: 6px 14px;
    font-size: 16px;


    color: rgb(0 0 0 / 90%);
    background: rgb(248 178 56 / 80%);
    border-radius: 6px;

    /* text-shadow:
    0 0 4px rgba(0,0,0,0.9),
    0 0 8px rgba(0,0,0,0.7); */

    pointer-events: none;
  }

  /* Date badge */
  .nd-wrapper .nd-date-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    max-width: 340px;

    color: #ffffff;
    font-size: 18px;
    font-weight: 600;

    text-shadow:
      0 0 4px rgba(0, 0, 0, 1),
      0 0 8px rgba(0, 0, 0, 0.95),
      0 0 14px rgba(0, 0, 0, 0.85),
      0 0 22px rgba(0, 0, 0, 0.7);
  }

  /* Carousel */
  .nd-wrapper .nd-carousel-container {
    overflow: hidden;
  }

  .nd-wrapper .nd-thumb-track {
    display: flex;
    transition: transform 0.35s ease-out;
  }

  /* Thumbnails */
  .nd-wrapper .nd-thumb {
    width: 100px;
    height: 95px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.25s;
    flex-shrink: 0;
  }

  .nd-wrapper .nd-thumb.active {
    border-color: #f74f22;
  }

  /* end */


  /* live video */
  @keyframes ripple {
    0% {
      transform: scale(0.6);
      opacity: 1;
    }

    100% {
      transform: scale(2);
      opacity: 0;
    }
  }

  /* end */

  /* e-hundi */
  .donation-table {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 100%;
  }

  .donation-table li {
    display: grid;
    grid-template-columns: 1fr auto;
    /* name | amount */
    gap: 12px;
    padding: 8px 12px;
    align-items: start;
  }

  /* Alternate row colors */
  .donation-table li:nth-child(odd) {
    background-color: #fff2e6;
  }

  .donation-table li:nth-child(even) {
    background-color: #f8f9fa;
  }

  .donor-name {
    word-break: break-word;
    font-weight: 500;
  }

  .donation-amount {
    white-space: nowrap;
    font-weight: 600;
    color: #dc3545;
    /* bootstrap danger */
  }

  .donation-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    margin: 0;
    padding: 6px 12px;
    font-size: 14px;
    background: rgb(202 41 0 / 90%);
    color: #fff;
    border-radius: 6px;
  }

  .donation-label i {
    font-size: 16px;
    margin-right: 4px;
  }

  .ehundi_motive {
    position: relative;
    z-index: 1;
  }

  .ehundi_motive:before {
    content: "";
    position: absolute;
    top: 25%;
    left: 25%;
    width: 250px;
    height: 250px;
    background-image: url('assets/img/e-hundi_motive.png');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    /* control opacity */
    z-index: -1;
    border-radius: 10px;
    /* optional */
  }

  /* end */
  /* online seva */
  .sevas_telugu_names {
    font-size: 18px;
    color: #bd8627;
  }

  .amount {
    color: #f74f22;
    font-weight: 600;
  }

  .service-box {
    background: #fffbf8;
    padding: 25px;
    border-radius: 10px;

  }

  .item-card {
    display: flex;
    gap: 15px;
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 1px dashed #ffb32f;
  }

  .item-card img {
    width: 85px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
  }
  .item-card2 {
    display: flex;
    gap: 15px;
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 1px dashed #ffb32f;
  }
    .homam-item:last-child .item-card2 {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
  .book_now_btn{
     font-size:13px;
     background-color: #f8b238;
     padding:3px 6px;
  }
  .book_now_btn:hover{
     
     background-color: #f8b238;
     
  }
  .item-card2 img {
    width: 170px;
    height: 192px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
  }

  .item-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }

  .item-link:hover {
    text-decoration: none;
  }

  .no-border {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .nav-btn {
    background: #f8b238;
    color: #000;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  /* end */
  /* upcoming events */
  .upcoming-events .item-card {
    border-bottom: 1px dashed #ffb32f;
  }
  .service-box .item-link:last-of-type .item-card {
    border-bottom: none !important;
}

  /* end */
  /* shankar sign css*/
  .guruji-sign {
    /* font-family: 'Great Vibes', cursive; */
    font-size: 1.5rem;
    /* adjust as needed */
    font-weight: normal;
    /* signature look */
    letter-spacing: 0px;
  }

  .quote-box {
    position: relative;
    padding: 50px 60px;
  }

  .quote-box::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100px;
    height: 100px;
    background: url("assets/img/shape/quotes-left.png") no-repeat center;
    background-size: contain;
    opacity: 0.1;
    /* faint look */
    pointer-events: none;
    z-index: -1;
  }

  .quote-box::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    background: url("assets/img/shape/quotes-right.png") no-repeat center;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
  }

  /* punyaprasdham video add */
  .punyaprasadham-video {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f74f22;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    /* 👈 allow nudging */
    top: -3px;
    /* 👈 move down a little, adjust until centered */
    overflow: visible;
    z-index: 2;
  }

  .punyaprasadham-video:hover {
    color: rgb(0 0 0 / 90%) !important;
  }

  .punyaprasadham-video i {
    margin-left: 2px;
    position: relative;
    z-index: 3;
  }

  /* ripple wrapper */
  .punyaprasadham-video.ripple::before,
  .punyaprasadham-video.ripple::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 35px;
    height: 35px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(248, 178, 56, 0.5);
    /* orange glow */
    animation: rippleOne 3s infinite;
    z-index: 1;
  }

  /* stagger delays like your code */
  .punyaprasadham-video.ripple::before {
    animation-delay: 0.9s;
  }

  .punyaprasadham-video.ripple::after {
    animation-delay: 0.6s;
  }

  @keyframes rippleOne {
    0% {
      box-shadow: 0 0 0 0 rgba(248, 178, 56, 0.5);
    }

    70% {
      box-shadow: 0 0 0 25px rgba(248, 178, 56, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(248, 178, 56, 0);
    }
  }

  /* 12 jyothirlinga yantralu */
  .jyothirlingas_sec {
    position: relative;
    background-color: #f6dec6;
    padding: 60px 0;
    overflow: hidden;
    /* ensures images don’t overflow the section */
  }

  .corner-image {
    position: absolute;
    width: 150px;
    /* adjust as needed */
    opacity: 0.15;
    /* light opacity */
    pointer-events: none;
    /* so they don’t block clicks */
  }

  .corner-image.top-left {
    top: -10px;
    left: -10px;
  }

  .corner-image.top-right {
    top: -10px;
    right: -10px;
  }

  .corner-image.bottom-left {
    bottom: -10px;
    left: -10px;
  }

  .corner-image.bottom-right {
    bottom: -10px;
    right: -10px;
  }

  .image-box {
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
  }

  .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 6px 10px;
    background-color: #d98b18;
    opacity: .9;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
  }

  .jyothirlingas_sec .carousel-control-prev,
  .jyothirlingas_sec .carousel-control-next {
    opacity: 1;
    /* remove Bootstrap's fade */
  }

  .jyothirlingas_sec .carousel-control-prev-icon,
  .jyothirlingas_sec .carousel-control-next-icon {
    background-color: #f74f22 !important;
    /* solid always */
    border-radius: 50%;
    background-size: 60% 60%;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* Reverse color on hover */
  .jyothirlingas_sec .carousel-control-prev:hover .carousel-control-prev-icon,
  .jyothirlingas_sec .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #f8b238 !important;
  }


  /* 12 jyothirlinga end */
  /*Text Scroll Start */

  section.big-section {
    padding: 160px 0;
  }

  .outside-box-left {
    /* margin-left: -30vw; */
    margin-left: 0vw;
  }

  @media (min-width: 992px) {
    .text-lg-end {
      text-align: right !important;
    }
     
  }

  .padding-3-rem-right {
    padding-right: 3rem;
  }

  .font-weight-600 {
    font-weight: 600 !important;
  }

  .letter-spacing-minus-10px {
    letter-spacing: -10px;
  }

  .text-sunglow,
  .btn-link.text-sunglow,
  a.text-sunglow-hover:hover {
    color: #ffcc2e;
    opacity: 0.6;
  }

  .text-big {
    font-size: 148px;
    line-height: 200px;
  }

  .alt-font {
    font-family: 'Poppins', sans-serif;
  }

  .d-block {
    display: block !important;
  }

  @keyframes slideInFromLeft {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }

    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .custom-slide-in {
    opacity: 0;
    visibility: hidden;
  }

  .custom-slide-in.wow {
    animation-name: slideInFromLeft;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
  }

  .text-overlap-style-02 {
    position: absolute;
    /* left: 434px; */
    left: -20px;
    margin-top: -120px;
  }

  /*Text Scroll end */
  /*arrow box start */

  @media (max-width: 767px) {
    #arrow-box {
      display: none !important;
    }
  }

  #arrow-box {
    display: none;
    position: sticky;
    top: 145px;
    z-index: 9999;
    background-color: #e8eaeb;
    max-width: 600px;
    height: 2.75rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4.375rem;
    font-weight: bold;
    color: #000;
    padding: 0.5rem 1rem;
  }


  #arrow-box ul {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #arrow-box.sticky {
    left: 60px !important;
    top: 135px;
    max-width: 600px;
    height: 2.75rem;
  }



  #arrow-box li a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
  }

  .scroll-link:hover {
    color: rgb(0 0 0 / 90%) !important;
    ;
    background-color: #ffffffff !important;
    padding: 8px 16px;
    border-radius: 22px;
  }

  /* space between two buttons in jyothirliga kalashalu and yantralu */
  .carousel-control-prev,
  .carousel-control-next {
    @media(min-width:1200px) {
      width: 10% !important;
    }

  }


  /* 12 jyothirlingas section */
  .jyoti-seva-section {
    background-color: #ffeddc;
    position: relative;
    /* overflow: hidden; */
  }

  .floating-shiva{
    /* position: absolute;
    left: -95px;
    top: 60%;
    transform: translateY(-50%);
    width: 600px;      
    opacity: 0.08;     
    z-index: 0;
    pointer-events: none;
    animation: shivaFloat 4s ease-in-out infinite; */

    position: absolute;
    left: -275px;
    top: 47%;
    transform: translateY(-50%);
    width: 58%;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
    animation: shivaFloat 4s ease-in-out infinite;
}

.jyoti-seva-section .container{
    position: relative;
    z-index: 2;
}

@keyframes shivaFloat{
    0%{
        transform: translateY(-50%) translateY(0);
    }
    50%{
        transform: translateY(-50%) translateY(-12px);
    }
    100%{
        transform: translateY(-50%) translateY(0);
    }
}

  /* Main box for all 12 Jyothirlingas */
  .jyoti-list-box {
    background-color: #fff6f1;
    padding: 20px;
    border-left: 4px solid #f04b38;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  }

  .jyoti-list-box-2 {
    background-color: #fff6f1;
    padding: 20px;
    border-radius: 8px;
  }

  /* Card */
  .jyoti-seva-card {
    position:relative;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
    min-height: 116px;
    padding: 14px;
    background-color: #ffffff;
    text-decoration: none;
    color: #222222;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #ffd385;
  }
.trishulam-icon {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 30px;
    height: 30px;
    opacity: 0.1;
    z-index: 2;
    pointer-events: none;
    object-fit: contain;
}
.abhishekam-icon {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 25px;
    height: 25px;
    opacity: 0.1;
    z-index: 2;
    pointer-events: none;
    object-fit: contain;
}
  .jyoti-seva-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    color: #222222;
  }

  /* Image */
  .jyoti-seva-card .main_img {
  width: 118px;
    height: 88px;
    flex: 0 0 118px;  

    display: block;
    object-fit: cover;
    border-radius: 8px;
  }
  @media(max-width:1300px){
    .jyoti-seva-card .main_img {
    width: 100px;
    height: 88px;
    flex: 0 0 100px;
  }
  .jyoti-seva-content h5{
      font-size:15px;
  }
 .item-card2 img {
    width: 150px;
    height: 180px;
  }
   
  }
  

  /* Content */
  .jyoti-seva-content {
    flex: 1;
    min-width: 0;
  }

  /* .jyoti-seva-content h5 {
  margin: 0 0 5px;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  color: #111111;
} */

  /* .jyoti-seva-telugu {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.35;
  color: #666666;
} */

  .jyoti-seva-amount {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #f04b38;
  }

  /* Optional right side area */
  .jyoti-side-box {
    min-height: 100%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
  }

  /* Large devices */
  @media (max-width: 1199px) {
    .jyoti-list-box {
      padding: 24px;
      border-left-width: 6px;
      border-top-left-radius: 24px;
      border-bottom-left-radius: 24px;
    }

    .jyoti-seva-card {
      min-height: 112px;
    }
  }

  /* Tablet */
  @media (max-width: 991px) {
    .jyoti-list-box {
      padding: 20px;
    }

    .jyoti-seva-card {
      gap: 15px;
    }

    .jyoti-seva-card .main_img {
      width: 110px;
      height: 82px;
      flex-basis: 110px;
    }

    .jyoti-seva-content h5 {
      font-size: 16px;
    }
  }

  /* Mobile - 2 columns if card column is col-6 */
  @media (max-width: 575px) {
    .jyoti-list-box {
      padding: 14px;
      border-left-width: 5px;
      border-top-left-radius: 18px;
      border-bottom-left-radius: 18px;
    }

    .jyoti-list-box .row {
      --bs-gutter-x: 12px;
      --bs-gutter-y: 14px;
    }

    .jyoti-seva-card {
      display: block;
      min-height: auto;
      padding: 0;
      gap: 0;
    }

    .jyoti-seva-card .main_img {
      width: 100%;
      height: 115px;
      flex: none;
    }

    .jyoti-seva-content {
      padding: 10px;
    }

    .jyoti-seva-content h5 {
      margin-bottom: 4px;
      font-size: 14px;
    }

    .jyoti-seva-telugu,
    .jyoti-seva-amount {
      font-size: 12px;
    }
    .item-card2 img {
    width: 140px;
    height: 160px;
     }
  }

  /* Very small mobile */
  @media (max-width: 380px) {
    .jyoti-list-box {
      padding: 10px;
      border-left-width: 4px;
      border-top-left-radius: 15px;
      border-bottom-left-radius: 15px;
    }

    .jyoti-list-box .row {
      --bs-gutter-x: 10px;
      --bs-gutter-y: 12px;
    }

    .jyoti-seva-card .main_img {
      height: 100px;
    }

    .jyoti-seva-content {
      padding: 8px;
    }

    .jyoti-seva-content h5 {
      font-size: 13px;
    }

    .jyoti-seva-telugu,
    .jyoti-seva-amount {
      font-size: 11px;
    }
  }

  /* telugu content behind the jyothirlingas */
  /* Wrapper */
  .jyotirlinga-title-wrapper {
    position: relative;
    padding-bottom: 25px;
    /* overflow: hidden; */
    text-align: center;
  }

  /* Large Telugu Background */
  .jyotirlinga-bg-text {
    position: absolute;
    left: 50%;
    top: -111px;
    transform: translate(-50%, -50%);
    font-family: "Ramabhadra", sans-serif;
    font-size: 125px;
    font-weight: 500;
    color: #b59b8e;
    opacity: .5;
    white-space: nowrap;
    letter-spacing: 2px;
    z-index: 1;
    pointer-events: none;
    user-select: none;
  }

  /* Foreground Content */
  .jyotirlinga-title-content {
    position: relative;
    z-index: 2;
  }

  .jyotirlinga-title-content .subtitle {
    color: rgb(0 0 0 / 90%);
    font-family: "helvetica", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
  }

  .jyotirlinga-title-content h2 .color-text {
    color: var(--orange);
    font-family: "helvetica", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    /* text-decoration-line: underline; */
  }

  @media (max-width:992px) {
    .jyotirlinga-bg-text {
      font-size: 140px;
    }
  }

  @media (max-width:768px) {
    .jyotirlinga-bg-text {
      font-size: 90px;
      letter-spacing: -4px;
    }
  }

  @media (max-width:576px) {
    .jyotirlinga-bg-text {
      font-size: 35px;
      top: -60px;
      letter-spacing: 0px;
    }
  }
  .temple-mobile-icon-2 {
    background: #fff4e0;
    border-radius: 50%;
    position: absolute;
    bottom: 5px;
    right: 20px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
/* book now for jyothirlingas*/
  .book-now-badge{
    display: inline-block;
    margin-left: 5px;
    padding: 1px 5px;
    font-size: 9px;
    font-weight: 600;
    color: #fff;
    background: #f74f22;
    border-radius: 10px;
    vertical-align: middle;
    line-height: 1.4;
}
/* book now for jyothirlingas */