@font-face {
    font-family: 'benguiatstd-book' ;
    src: url(../fonts/BENGUIATSTD-BOOK.OTF);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-cream: #FFF9E6;
    --color-orange: #FF8C42;
    --color-orange-light: #FFB366;
    --color-dark-brown: #3D2817;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-footer-bg: #1F1F1F;
    --color-green: #2A7F3E;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    font-weight: 400;
}
h1, h2, h3{
    font-family: 'benguiatstd-book' ;
}

.text-primary-orange {
    color: var(--color-orange);
}

#mainNav {
    background: linear-gradient(to left, #ffeeb2, #fffef8, #ffeeb2);
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 10px;
}


.navbar-logo {
    height: 100px;
}
.navbar-brand {
  padding: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-en {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-green);
    line-height: 1;
}

.brand-ta {
    font-size: 20px;
    font-weight: 700;
    color: #D84315;
    line-height: 1;
}

.nav-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text) !important;
    padding: 8px 12px !important;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-text:hover {
    color: var(--color-orange) !important;
}
.navbar-nav .nav-link.active {
  color: #f80 !important;
}
.btn-donate-nav {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    cursor: pointer;
    padding-left: 40px;
    position: relative;
}
.btn-donate-nav img {
  height: 35px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.btn-donate-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    color: white;
}
.navbar-nav {
  border: 1px solid #ffb20b;
  padding: 5px;
  border-radius: 60px;
  padding-left: 20px;
}
.nav-link.nav-text {
  padding-inline: 20px !important;
}

.hero-section {
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.news-ticker {
    background: linear-gradient(90deg, #f88e14, #f88e14);
    padding: 10px 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    align-items: center;
    /* gap: 20px; */
    color: white;
}

.ticker-label {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.ticker-scroll {
  overflow: hidden;
  position: relative;  
}

.ticker-wrapper {
  display: flex;
  width: max-content;
  animation: scrollTicker 20s linear infinite;
}

.news {
  white-space: nowrap;
  padding-right: 30px;
  font-size: 14px;
  color: #fff;
}

/* Keyframes for continuous scroll */
@keyframes scrollTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.welcome-section {
    padding: 55px 0 0px;
    background-color: var(--color-white);
}

.welcome-card {
    background: linear-gradient(to top, #fcf2da, #fffe);
    border: 10px solid #ffbc2c;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.shadow_img_set {
  position: relative;
  top: -20px;
  display: inline-flex;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -20px;
}
.welcome-title, .section-heading {
    font-size: 38px;
    color: var(--color-text);
    margin-bottom: 5px;
    letter-spacing: .5px;
}
.welcome-title span {
  font-weight: 800;
}
.welcome-desc {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.motto-block {
    margin-top: 28px;
}

.motto-heading {
    font-size: 22px;
    font-weight: 600;
    color: #451717;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.motto-items {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.motto-items li {
    display: flex;
    gap: 9px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.bullet-dot {
    color: var(--color-orange);
    font-size: 18px;
    line-height: 1.2;
    flex-shrink: 0;
    padding-top: 2px;
}

.btn-orange {
    background-color: #ffe8b5;
    color: #684739;
    border: none;
    padding: 11px 32px;
    border-radius: 44px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    line-height: 100%;
}

.btn-orange:hover {
    background-color: #f2d79c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgb(242, 215, 156) ;
}

.peacock-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    mix-blend-mode: darken;
}
/* events */
.events-section {
  padding-block: 55px 70px;
}
/* ---------- Container ---------- */
.event-cards {
  display: flex;
  gap: 20px;
  align-items: stretch;
  overflow-x: auto;              /* allows horizontal scroll on small screens */
  scroll-behavior: smooth;       /* smooth when JS adjusts scroll */
  padding: 10px 0;
}

/* hide scrollbar if you want (optional) */
.event-cards::-webkit-scrollbar { display: none; }

/* ---------- Card (base) ---------- */
.event-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: width 0.5s cubic-bezier(.2,.9,.2,1), padding 0.4s ease, box-shadow 0.3s;
  width: 25%;                     /* base width for each card - adjust as required */
  min-width: 220px;               /* prevents too-narrow cards */
  display: flex;                  /* image + body side-by-side */
  align-items: stretch;
  height: 330px;                  /* uniform height */
  cursor: pointer;
  padding: 0;
}

/* card hover visual */
.event-card:hover {
  transform: translateY(-6px);
  /* box-shadow: 0 12px 28px rgba(0,0,0,0.12); */
}

/* active (expanded) card */
.event-card.active {
  width: 55%;                     /* expanded width - adjust */
  padding: 0;                     /* we show body padding via .event-body */
}

/* ---------- Image wrap ---------- */
.event-img-wrap {
  flex: 0 0 100%;                  /* fixed portion for image */
  min-width: 150px;
  background: #f0f0f0;
  position: relative;
  overflow: hidden;
  display: block;
}
.event-card.active .event-img-wrap {
  flex: 0 0 40%;
}
/* ensure cover and not stretch weirdly */
.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* zoom on hover */
.event-card:hover .event-img-wrap img { transform: scale(1.05); }

/* overlay title (kept as you had) */
.event-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 100%);
  color: #fff;
}

/* hide overlay on active if you want */
.event-card.active .event-overlay { display: none; }

/* ---------- Body ---------- */
/* NOTE: body is present but hidden when card not active */
.event-body {
  flex: 1 1 auto;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* show body when active */
.event-card.active .event-body {
  opacity: 1;
  transform: translateX(0);
}

/* text styles */
.event-card-title { font-size: 20px; margin: 0 0 8px; line-height: 1.2; }
.event-card-text { font-size: 14px; color: var(--color-text-light); margin: 0 0 12px; line-height: 1.5; }

/* meta and button */
.event-meta { margin-block: 12px; position: relative; z-index: 0;}
.event-meta::before { 
    content: "";
    position: absolute;
    width: 110%;
    height: 110%;
    left: -10%;
    top: -10%;
    background: #fef7e9;
    z-index: -1;
}

.meta-item { margin: 6px 0; display: flex; gap: 8px; align-items: center; }
.event_btn { font-size: 14px; align-self: flex-start; background: linear-gradient(to top,#f2f2f2,#fff); padding: 7px 20px; border-radius: 50px; border: 1px solid #edc26c; transition: background .3s; }

/* responsive: stack cards on small screens */
@media (max-width: 900px) {
  .event-card { width: 80%; min-width: 260px; }
  .event-card.active { width: 92%; }
  .event-cards { gap: 12px; padding-left: 0px; }
  .event-img-wrap { flex: 0 0 40%; } /* you may change for portrait */
}


/* //// */
.meta-item {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-block: 6px;
}

.meta-item i {
    color: #ca282d;
    margin-top: 3px;
    font-size: 18px;
    flex-shrink: 0;
}

.btn-orange-sm {
    background-color: var(--color-orange);
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-orange-sm:hover {
    background-color: #F07A2F;
}

.event-card-dark {
    position: relative;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.event-card-dark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.event-card-dark:hover img {
    transform: scale(1.05);
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 40px 24px 24px;
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.event-overlay-title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.sponsors-part {
  margin-top: 50px;
  background: #fff;
  padding: 35px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

.sponsor-item {
    background: white;
    /* border: 1px solid #e8e8e8; */
    border-radius: 8px;
    padding: 0px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.sponsor-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.sponsor-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-section {
    background-color: #fff;
    padding-block:55px;
}

.gallery-left {
    display: flex;
    align-items: start;
    position: relative;
}

.gallery-content {
    position: relative;
    z-index: 2;
    padding-right: 60px;
}

.gallery-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 10px 0 28px;
}

.watermark {
  width: 100%;
}

.watermark img {
    width: 100%;
    height: 520px;
    object-fit: contain;
}


.gallery-grid a img {
  width: 100%;
  /* height: auto; */
  display: block;
  object-fit: cover;
}



.gallery-grid::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background-image: url(../images/gallery_dec_tb.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
}
.gallery-grid::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background-image: url(../images/gallery_dec_tb.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    transform: rotateY('180deg');
}
.gallery-grid {
    height: 100%;
  columns: 2;
  column-gap: 15px;
  position: relative;
  padding-block: 30px;
}

.gallery-grid-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    height: 200px;
    background: #f0f0f0;
    margin-bottom: 15px;
    display: block;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-grid-item:hover img {
    transform: scale(1.08);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 48px;
    opacity: 0.9;
    transition: all 0.3s;
    z-index: 2;
}

.gallery-grid-item:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}


.v-icon {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.pos-relative {
  position: relative;
}
.g-box {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000a1;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}
.text {
  color: white;
  font-size: 25px;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.g-box:hover .overlay {
  height: 100%;
}
.gallery-grid > a:nth-child(3) .v-icon {
  max-height: 380px;
}


.video-item {
  width: 100%;
  /* height: 100%; */
  position: relative;
  /* display: inline-block; */
}
.video-icon-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../images/yt.png) no-repeat center center;
  z-index: 1;
  -webkit-transition: all 0.4s ease-out;
  -mz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background-size: 60px;
}
.flip:hover {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateX(3px);
    transform: translateX(8px)
  }

  33.3% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px)
  }

  49.95% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px)
  }

  66.6% {
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px)
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px)
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px)
  }

  33.3% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px)
  }

  49.95% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px)
  }

  66.6% {
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px)
  }

  83.25% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px)
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}
.cta-section {
    background: linear-gradient(135deg, #FFF4E6, #FFE8CC);
    padding: 60px 0;
}

.cta-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
}

.btn-donate-cta {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 14px 40px;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-donate-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.35);
    color: white;
}


.footer-section {
    position: relative;
    background: url(../images/footer_top_design.png), linear-gradient(#fff 10%, #fcf8ef 0%);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
    color: #222222;
    padding: 50px 0 0;
}

.footer-title {
  color: #d8af4d;
}
.footer-heading {
  font-size: 22px;
  font-weight: 500;
  color: #222;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    columns: 2;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: #222;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-orange);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    border: 1px solid;
}

.social-link:hover {
    background-color: var(--color-orange);
    transform: translateY(-3px);
    color: #fff;
}

.footer-contact {
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #f0e1c0;
  padding-block: 20px;
  margin-top: 15px;
}


.contact-block {
    margin-bottom: 18px;
    line-height: 1.6;
}

.contact-block strong {
    color: #d8af4d;
    font-weight: 500;
    display: block;
    margin-bottom: 0px;
    font-size: 16px;
}

.contact-block i {
    color: #d8af4d;
    margin-right: 8px;
}

.copy_right_part p {margin-bottom: 0;}
.copy_right_part {
  padding-block: 30px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background: #f88e14;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom a {
    color: var(--color-orange);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
.cta_part {
  background: #ffecc0;
  padding: 30px;
  border-radius: 210px;
  text-align: center;
  border: 1px dotted #fbba6c;
}
.footer-bottom p a {
  color: #fff624;
}
.inner_content {
  padding-block: 40px;
}



 .navbar-toggler.ss[aria-expanded="false"]{
    display: none !important;
 }
 .navbar-toggler.ss[aria-expanded="true"]{
    display: block !important;
 }


 .carousel-indicators [data-bs-target] {
    border: none;
  width: 15px;
  height: 15px;
  opacity: 1;
  border-radius: 50%;
  background-color: #ffffffb5;
}
.carousel-indicators {
  margin-bottom: 11px;
  margin-left: 15%;
  max-width: 60px;
  margin-inline: auto;
  background: #0000009c;
  padding: 5px;
  border-radius: 30px;
}
.carousel-indicators button.active {
  background: #f69527;
}
 
@media (max-width: 1200px) {
    .welcome-card {
        padding: 40px;
    }

    .gallery-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .gallery-left {
        padding: 60px 40px;
        min-height: 400px;
    }

    .gallery-right {
        padding: 40px;
    }
}
@media only screen and (min-width: 992px) {
    .new_bottom_menu {
  display: none !important;
}
}

@media (max-width: 992px) {
   

    .welcome-card {
        padding: 30px;
    }

    .welcome-title, .section-heading {
        font-size: 32px;
    }


    .navbar-toggler {
        border: none;
    }

    /* .navbar-collapse {
        background-color: var(--color-cream);
        padding: 15px 0;
        margin-top: 15px;
        border-top: 1px solid #e0e0e0;
    } */

    /* .nav-item {
        padding: 8px 0 !important;
    } */

    .gallery-left {
        padding: 40px;
    }

    .gallery-right {
        padding: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-grid-item {
        height: 180px;
    }

  
}

@media (max-width: 768px) {
  

    .events-section,
    .sponsors-section,
    .welcome-section {
        padding: 60px 0;
    }

    .event-img-wrap {
        height: 200px;
    }

    .event-card-dark {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-grid-item {
        height: 200px;
    }

    .gallery-left {
        padding: 30px 20px;
        min-height: auto;
    }

    .gallery-right {
        padding: 30px 20px;
    }

    .welcome-card {
        padding: 20px;
    }

    .welcome-title, .section-heading {
        font-size: 26px;
    }

    .cta-heading {
        font-size: 24px;
    }

    .ticker-label {
        font-size: 11px;
    }

    .ticker-scroll span {
        font-size: 12px;
    }

    .sponsor-item {
        min-height: 85px;
    }
    .hero-section .hero-image{
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 100%;
    }
.hero-section .hero-image{
        min-height: 220px;
    }
    .brand-en,
    .brand-ta {
        font-size: 16px;
    }



    .news-ticker {
        padding: 8px 0;
    }

    .welcome-section,
    .events-section,
    .sponsors-section {
        padding: 35px 0;
    }

    .welcome-card {
        padding: 15px;
        border-width: 3px;
    }

    .welcome-title, .section-heading {
        font-size: 26px;
    }

    .event-card {
        margin-bottom: 0px;
    }

    .event-card-title {
        font-size: 20px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-heading {
        font-size: 20px;
    }

    .btn-donate-cta {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    .footer-section {
        padding: 40px 0 20px;
    }

    .sponsor-item {
        min-height: 75px;
    }

    .gallery-grid-item {
        height: 160px;
    }
}


/* ------------manjunath---------------- */
.welcome-card-2 {
    height: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center;  */
    align-items: center;
    text-align: center;
    padding: 25px !important;
}

.event-card-title-2 {
    border-bottom: 1px solid #ffbc2c70;
    padding-bottom: 4px;
    color: #451717;
}

.welcome-desc-2 {
    padding-top: 6px;
}

.read-span a {
    text-decoration: none;
    color: red !important;
}

.vise-img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    /* border: 1px solid red; */
}

.welcome-card-2 .footer-heading {
    text-transform: uppercase;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.dropdown-toggle-mobile::after {
    content: "\f078";  
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 6px;
    display: none;
}
@media screen and (max-width: 991px) {
    .dropdown-toggle-mobile::after {
        display: inline-block;
    }
}







