 :root {
            --primary-dark: #1a1a1a;
            --secondary-dark: #2d2d2d;
            --gold: #ffe400;
            --light-gold: #ffce36;
            --text-light: #f8f9fa;
            --text-muted: #adb5bd;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
        }
        .container{max-width: 1230px;}

        /* Navigation */
        .header {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          z-index: 999;
          transition: all .4s linear;
        }
        .header.fixed_menu{
          position: fixed;
          top: -51px;
          transform: translateY(50px);
          width: 100%;
          transition: all .4s linear;
        }
        .header.fixed_menu .navbar-brand img {
          height: 55px;
        }
        .navbar {
            
            transition: all 0.3s linear;
            padding: 15px 0;
        }

        .navbar.scrolled {
          transition: all .4s linear;
            background-color: #000;
            border-bottom: 1px solid #ffe40029;
        }

        .navbar-brand {
            text-decoration: none;
        }
        .navbar-brand img {
          height: 75px;
        }
        .navbar-brand span {
            color: var(--text-light);
        }
        .navbar-expand-lg .navbar-nav {
          gap: 25px;
        }
        .dropdown-toggle::after {
          display: inline-block;
          margin-left: 0 !important;
          border-top: 0;
          border-right: 0;
          border-bottom: 0;
          border-left: 0;
        }
        
        .dropdown-menu {
          background: #0b0a08;
          border: 1px solid #3e3505;
          border-radius: 0;
          padding-block: 0px;
        }
        .dropdown-menu .dropdown-item {
          color: #fff;
          padding-block: 10px;
        }
        .dropdown-menu .dropdown-item:focus, .dropdown-menu .dropdown-item:hover {
          background-color: #ffce36;
          color: #000;
        }
        .dropdown-menu li:not(:last-child) {
          border-bottom: 1px solid #3b3604;
        }
        .nav-item.dropdown:hover .dropdown-menu {
          display: block;
        }
        .navbar-nav .nav-link.active {
          color: var(--gold) !important;
        }
        .navbar-nav .nav-link.active::after {
            width: 100%;
            left: 0;
        }
        .navbar-nav .nav-link {
            color: var(--text-light) !important;
            font-weight: 400;
            margin: 0 5px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 16px;
            letter-spacing: .10px;
            padding-inline: 0 !important;
        }

        .navbar-nav .nav-link:hover {
            color: var(--gold) !important;
        }
         /* .navbar-expand-lg .navbar-nav .dropdown-menu {
left: 10px;
  } */

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 50%;
            background-color: var(--gold);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        .navbar-toggler-icon {
          filter: invert(1) brightness(100);
        }
        button.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon{
          background-image: url(../images/close.png) !important;
          filter: invert(0) brightness(100);
        }
        

        /* Hero Section */
        /* .hero-section {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                        url('https://images.pexels.com/photos/6032456/pexels-photo-6032456.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        } */
         .carousel-item {
          display: flex !important;
          align-items: center;
        }
        .carousel-caption {
          bottom: 50%;
          transform: translateY(50%);
          left: 0;
          right: 0;
          max-width: 1230px;
          margin: auto;
        }
        .hero-content {
            z-index: 2;
            position: relative;
        }

        .hero-title {
            font-size: 50px;
            font-weight: 400;
            margin-bottom: 0px;
            line-height: 1.2;
            color: #fff8d5;
            text-align: left;
        }

        .hero-title .highlight {
            color: var(--light-gold);
            font-weight: 600;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        .decorative-line {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--light-gold));
            margin: 30px 0;
        }
        .carousel-indicators [data-bs-target].active{
          
          background: #ffce36;
        }
        .carousel-indicators [data-bs-target]{
          width: 15px;
          height: 15px;
          border-radius: 50%;
          border: 0;
          opacity: 1;
          background: #dddddd4d;
        }
        .hero-section {
          padding-bottom: 10px;
          position: relative;
        }

        .bnr_bottom_line {
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
        }
        .carousel-indicators {margin-bottom: 1.5rem;}

        /* Sections */
        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 42px;
            font-weight: 400;
            text-align: center;
            padding-bottom: 65px;
            position: relative;
            margin-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 56px;
            background: url(../images/head_btm_deg.png);
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* History Section */
        .history-section {
          background: url(../images/welcom_bg.png);
          background-position: top center;
          background-size: 100%;
          background-repeat: no-repeat;
            background-color: #020202;
            position: relative;
        }

        .history-content {
            text-align: center;
            /* max-width: 800px; */
            margin: 0 auto;
        }

        .history-text {
            font-size: 17px;
            line-height: 30px;
            color: #fff8d5;
            margin-bottom: 15px;
            font-weight: 300;
        }

        .elegant-title {
            font-size: 66px;
            line-height:56px;
            letter-spacing: .10px;
            color: var(--light-gold);
            padding-bottom: 10px;
            margin-bottom: 25px;
            font-family: "Italianno", cursive;
            font-weight: 400;
            font-style: normal;
            background: linear-gradient(90deg, #e8d470 25%, #9b7a31, #e8d470 50%, #9b7a31 65%, #e8d470);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
 


        .know-more-btn {
            background: linear-gradient(45deg, #e8c262, #e8c262);
            color: var(--primary-dark);
            padding: 10px 35px;
            border: none;
            border-radius: 30px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 4px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 14px;
        }

        .know-more-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 10px rgba(77, 75, 75, 0.51);
            color: var(--primary-dark);
        }

        /* Programs Section */        
        .programs-section {
            background-color: #020202;
            position: relative;
            padding-bottom: 0;
        }
        .programs-section .programs_bg_left {
          position: absolute;
          height: 430px;
          top: -200px;
          left: 0;
        }
        .program-card {
            background-color: var(--secondary-dark);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #fad573;
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--gold);
        }

        .program-image {
            max-height: 640px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .program-image img {
          width: 100%;
        }
        .program-overlay {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            background: linear-gradient(#111111d6, #111111d6);
            padding: 10px 20px 10px;
            color: white;
        }
        .programs_middle {
          width: 100%;
          position: relative;
          min-width: 224px;
          left: 50%;
          transform: translateX(-50%);
        }

        .program-title {
            font-size: 22px;
            font-weight: 400;
            margin-bottom: 5px;
            color: #ffce53;
            margin-bottom: 0;
        }

        .program-subtitle {
            font-size: 0.9rem;
            color: var(--gold);
        }

        .view-more-btn {
            text-align: center;
            margin-top: 50px;
        }

        /* Gallery Section */
        .gallery-section {
            background-color: #000;
            position: relative;
            z-index: 1;
            /* overflow: hidden; */
        }
        .gallery-section .photo_gallery_bg_right {
          position: absolute;
          right: 0;
          height: 350px;
          top: -290px;
          z-index: 3;
        }
        .section-title.gallery_title{
          padding-bottom: 0;
        }
        .section-title.gallery_title::after{display: none;}
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
            position: relative;
            border: 1px solid #ffbb34;
            border-radius: 10px;
            padding: 25px;
            background: #000;
        }
         .gallery-grid::after {
          position: absolute;
          content: "";
          background: url(../images/photo_gallery_top_img.png);
          background-position: center;
          background-size: 100%;
          width: 385px;
          height: 70px;
          top: -64.5px;
          left: 2%;
         }
         .gallery-grid::before {
          position: absolute;
          content: "";
          background: url(../images/photo_gallery_top_img.png);
          background-position: center;
          background-size: 100%;
          width: 385px;
          height: 70px;
          top: -64px;
          right: 2%;
         }

        .gallery-item {
            height: 205px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .gallery-item img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: all 0.3s ease;
          transform: scale(1);
        }
        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(212, 175, 55, 0.3);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-img:hover {
          transition: all 0.3s ease;
            transform: scale(1.05);
        }

        /* Quote Section */
        .quote-section {
            padding-block: 30px;
            position: relative;
            z-index: 1;
        }
        .quote_inner_main .overlay {position: absolute;display: flex;bottom: -74px; align-items: center;gap: 20px;width: 100%;}
        .quote_inner_main .overlay .left_part img {border-radius: 100px;height: 150px;position: relative;bottom: 25px;left: 30px;}
        .quote_inner_main .right_part {display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 100px;}
        .quote_inner_main {position: relative;z-index: 1;}
        .quote_inner_main .social_links, .quote_inner_main .mail_links {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 15px;
        }
        .footer_bg_left {
  position: absolute;
  bottom: -15px;
  left: -70px;
}
        
        .quote_inner_main .mail_links a, .quote_inner_main .mail_links a.number:hover {
          color: #fff;
          background: #874d1d;
          padding: 8px 25px;
          border-radius: 30px;
          text-decoration: none;
          transition: all .4s linear;
        }
        .quote_inner_main .mail_links a:hover, .quote_inner_main .mail_links a.number {
          transition: all .4s linear;
          background-color: #693d24;
        }
         .quote_inner_main  .social_links a {
            color: #fff;
            border: 1px dashed;
            padding: 10px 15px;
            width: 50px;
            height: 50px;
            display: inline-flex;
            border-radius: 40px;
            text-decoration: none;
            justify-content: center;
            align-items: center;
            transition: all .4s linear;
          }
          .quote_inner_main .social_links a:hover {
background: var(--gold);
color: #000;
transition: all .4s linear;
}

        .feedback_img {
          width: 100%;
          border-radius: 10px;
        }

        /* Footer */
        .footer {
            background-color: #181818;
            padding: 30px 0;
            overflow: hidden;
            z-index: 2;
            position: relative;
        }

       
       

      

        .footer-section a:hover {
            color: var(--light-gold);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background-color: var(--secondary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--gold);
            transform: translateY(-3px);
        }

        .footer-bottom {
          display: flex;
          justify-content: space-between;
        }
        .footer-bottom p {
          margin-bottom: 0;
          font-weight: 300;
  font-size: 14px;
        }

       

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

.fade-in.visible {
            opacity: 1;
            transform: translateY(0);
}
/* inner pages css */

.inner_banner_section{
  background-color: #020202;
 position: relative;
}
.banner_img{
  width: 100%;
}
.inner_banner_content{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  top: 40px;
  left: 0;
}
.inner_banner_section .bnr_bottom_line {
height: 5px;
}
.inner-title{
  text-align: center;
}

/* form */
.form-group.set_form {
  text-align: center;
}

.form-group.set_form label {
  display: block;
}

.form-check {
  background: #f3efe7;
  padding: 7px 25px 7px 45px;
  border-radius: 20px;
  margin-top: 5px;
  margin-left: 10px;
}

.form-group.set_form .form-check {
  display: inline-block;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 10px;
}

.form-control {
  height: auto;
  border-radius: 5px;
  border: none;
  padding: 0;
  font-size: 1rem;
  background: transparent;
  color: #837e74;
  font-weight: 300;
}

.form-control:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.form-check {
  margin-bottom: 10px;
}

.form-check-input:checked {
  background-color: #d44720;
  border-color: #d44720;
}

.form-check-input:focus {
  border-color: transparent;
  box-shadow: none;
}

.submit-btn {
  background: linear-gradient(to right, #da2651, #880222);
  border: none;
  padding: 12px 70px;
  font-size: 16px;
  font-weight: 400;
  width: auto;
  margin-top: 20px;
  transition: all 0.3s ease;
  margin-inline: auto;
  display: block;
  border-radius: 40px;
}

.submit-btn:hover {
  background: linear-gradient(to left, #da2651, #880222);
}

.ss .form-group {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  padding: 12px 30px;
/* border-bottom: 1px solid #fff8d5; */
  padding-inline: 0;
  border: none !important;
  border-color: transparent !important;
}



.ss .form-group label {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 0px;
  display: block;
  text-align: left;
  
}

.ss .form-group .form-control:focus {
  /* border: none !important; */
  box-shadow: none;
  background: transparent;
}
.form_align {
  padding: 50px;
  max-width: 850px;
  margin: auto;
  background: #00000080;
  border: 1px solid #fff8d5;
  border-radius: 10px;
  border-bottom-width: 5px;
  padding-top: 60px;
  margin-top: 20px;
}
.ss .form-group textarea:focus-visible {
  outline: none;
}
.ss .form-group textarea {
  width: 100%;
  border: none;
  background: transparent;
  resize: none;
}
.know-more-btn.sub_btn {
  font-size: 16px;
}
.quote-section.inner {
  background: #020202;
  padding-bottom: 100px;
  padding-top: 0;
}
.ss .form-group input, .ss .form-group textarea{
  color: #fff8d5;
  border-bottom: 1px solid #fff8d5;
  padding-bottom: 10px;
  border-radius: 0;
  width: 100%;
}
.ss .form-group input::placeholder, .ss .form-group textarea::placeholder {color: #fff;
  padding-bottom: 10px;
  border-radius: 0;
  width: 100%;}
/*  */
/* photo gallery */
.main .img_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}
.main .card {
  color: #252a32;
  border-radius: 2px;
  background: #ffffff;
  border: none;
  border-radius: 5px;
  overflow: hidden;
}
.main .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #ffffff;
}
.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@media screen and (max-width:992px) {
  .main .img_container {grid-template-columns: repeat(3, 1fr);}
  .navbar-expand-lg .navbar-nav .dropdown-menu {
  left: 0;
}
 
}
@media screen and (max-width:576px) {
  .main .img_container {grid-template-columns: repeat(2, 1fr);}
  .tbox-gap.gallery-sec.common-sec {
    padding: 15px !important;
}

}


/*  */
.alert-dismissible .btn-close  {
  opacity: 1;
  font-size: 20px;
}

label.error{
  font-style: normal !important;
  color: red !important;
}
fieldset.has-error{
  border-color:red !important
}
.alert{
  position: fixed;
  top: 12%;
  max-width: 550px;
  right: 10px;
  box-shadow: rgb(0 0 0 / 20%) 0px 8px 24px;
  border: 0px;
  padding: 30px 60px 30px 30px;
  z-index: 1000;
  -webkit-animation: cssAnimation 10s forwards;
  animation: cssAnimation 10s forwards;

}

@keyframes cssAnimation {
  0% {
      opacity: 1;
  }

  90% {
      opacity: 1;
  }

  100% {
      opacity: 0;
      display: none !important;
  }
}

@-webkit-keyframes cssAnimation {
  0% {
      opacity: 1;
  }

  90% {
      opacity: 1;
  }

  100% {
      opacity: 0;
      display: none !important;
  }
}


.contact-msg button.btn-close {
  font-size: 20px;
  color: #3b7b38;
  position: absolute;
  top: 10px;
  right: 8px;
  width: 18px;
  height: 10px;
  border-radius: 40px;
  background: transparent;
  border: 1px solid #3b7b38;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*  */

.video_gallery {
    padding: 20px;
}

.video_gallery .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.video_gallery .thumbnail {
    flex: 1 1 350px; /* Grow/Shrink with base width 250px */
    aspect-ratio: 16 / 9; /* Maintain YouTube video ratio */
    background-size: cover;
    background-position: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    max-width: 382px;
}
.video_gallery .thumbnail::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/youtube.png);
  background-size: 70px;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.video_gallery .thumbnail:hover::after {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Modal Styling Scoped under .video_gallery */
#videoModal.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

#videoModal .modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
}

#videoModal .modal-content iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
}

#videoModal .close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
#videoModal .modal-content {
  max-width: 900px;
  height: 500px;
  margin: auto;
}
#videoModal #modalIframe {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/*  */

.article_main .program-card .program-image img, .article_main .program-card, .article_main .program-card .program-image {
  height: 100%;
}
.article_main .program-card .program-image img{
  object-fit: cover;
}
.article_main .program-card .program-image {
  max-height: 350px;
}

.list_set {padding-left: 0;}
.list_set li{
  margin-bottom: 7px;
  text-align: left;
  margin-left: 10px;
  color: #fff8d5;
}

.article_section .article_main .program-card .program-image{max-height: 500px;}
.article_section .article_main .program-card .program-image img {
  max-height: 280px;
  min-height: 280px;
}
.article_section .article_main .program-card .program-image {
  height: auto;
}
.article_section .program-overlay {
  position: relative;
  bottom: 0;
}
.article_section .program-title {
  font-size: 18px;}
.article_section a {text-decoration: none;}
.article_section  .program-card {
  background: #111;
}

.event-sec .program-image{
    max-height: 100%;
}
@media screen and (max-width:420px) {
  .article_section .article_main .program-card .program-image img {
    min-height: auto;
  }
  .article_section .program-title {
  font-size: 16px;
}
}