@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Icons');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");


* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "poppins", sans-serif;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

summary {
  display: list-item;
}

body,
html {
  height: 100%;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.4;

  -webkit-overflow-scrolling: touch;

  -ms-overflow-style: scrollbar;

  background-color: #ffffff;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background-color: #e7e7e7;
}

body::-webkit-scrollbar-thumb {
  background-color: #000000;
  ;

  border: 1px solid #020a1a;

  border-radius: 10px;
}

p {
  font-size: 15px;
  color: #1c1c1c;
  line-height: 1.55;
  margin-bottom: 1rem;
  font-weight: 500;
}

a,
a:hover,
a:focus,
button:hover,
button:focus,
input:focus {
  outline: none !important;
  text-decoration: none !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: 'poppins', sans-serif;
}

/*------Parallax Css----------*/
.parallax {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
}

.animation {
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
}

@keyframes slide-up {
  from {
    opacity: 0;
    top: 100px;
  }

  to {
    opacity: 1;
    top: 0;
  }
}

.animation_slide-up {
  animation-name: slide-up;
}

@keyframes slide-down {
  from {
    opacity: 0;
    bottom: 100px;
  }

  to {
    opacity: 1;
    bottom: 0;
  }
}

.animation_slide-down {
  animation-name: slide-down;
}

@keyframes slide-left {
  from {
    opacity: 0;
    left: 100px;
  }

  to {
    opacity: 1;
    left: 0;
  }
}

.animation_slide-left {
  animation-name: slide-left;
}

@keyframes slide-right {
  from {
    opacity: 0;
    right: 100px;
  }

  to {
    opacity: 1;
    right: 0;
  }
}

.animation_slide-right {
  animation-name: slide-right;
}

@keyframes flip-x {
  from {
    opacity: 0;
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -180deg);
  }

  to {
    opacity: 1;
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  }
}

.animation_flip-x {
  backface-visibility: visible;
  animation-name: flip-x;
}

@keyframes flip-y {
  from {
    opacity: 0;
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  }

  to {
    opacity: 1;
    transform: perspective(400px);
  }
}

.animation_flip-y {
  backface-visibility: visible !important;
  animation-name: flip-y;
}

@keyframes zoom {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 1;
  }
}

.animation_zoom {
  animation-name: zoom;
}

/*-----Custome Css Area----*/
.main_header {
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
}

.main_header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-animation: smoothScroll 1s forwards;
  animation: smoothScroll 1s forwards;
  z-index: 999;
}

@-webkit-keyframes smoothScroll {
  0% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes smoothScroll {
  0% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.main_header .navbar-brand {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 5px 10px 0;
  width: 165px;
  background-color: #a62541;
  z-index: 9999;
  -webkit-box-shadow: 0px 0px 12px rgb(0 0 0 / 33%);
  box-shadow: 0px 0px 12px rgb(0 0 0 / 33%);
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.main_header .navbar-brand .logo-2 {
  display: none
}

.main_header.sticky .navbar-brand {
  width: 123px;
  padding: 0;
  background-color: #822337;
  z-index: 99;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.main_header.sticky .navbar-brand .logo-1 {
  display: none
}

.main_header.sticky .navbar-brand .logo-2 {
  display: block
}

.main_header.sticky .navbar-brand::after {
  display: none;
}

.main_header .navbar-brand::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -41%;
  width: 100%;
  height: 46px;
  background: url(../images/bg/logo-shape.png);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main_header .quote_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: middle;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main_header .quote_btn a {
  background-color: #d7214a;
  width: 145px;
  padding: 20px 0;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.main_header .quote_btn a:hover {
  background-color: #0D6B9E;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.main_header .logo-1 {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  /* padding: 10px 10px 10px 10px; */
  width: auto;
  max-width: 100%;
}

.hero_secc {
  background: url(../images/banner-bg.jpg) lightgray 0px -0.07px / 100% 122.226% no-repeat;
  padding-top: 5%;
  position: relative;
}
.venu1{
  font-size: 25px !important;
  color: #FFFF00 !important;
  font-weight: 600 !important;
}
.spn-clr{
  color: #502aa3;
  font-weight: 600;
}
.banner_text p {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin: 0px;
}

.banner_text p span {
  color: #FFFF00;
}

.banner_text .conf_name {
  font-size: 45px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.banner_text .conf_date {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 10px 0;
}

.banner_text .conf_date span {
  color: #FFFF00;
}

.banner_text .venu {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}



.carousel-inner .carousel-caption img {
  width: 10rem;
  margin-bottom: 20rem;
}
.com-pic{
  text-align: -webkit-center;
}
.com-pic img{
  max-width: 200px;
  border-radius: 50% !important;
}
.team-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 320px; 
    padding: 15px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.botom_bg {
  background: url(../images/re-1.png);
  background-repeat: repeat-x;
  background-position: bottom;
  width: 100%;
  height: 139px;
}

/* Counter Start  */
.conunt_num {
  position: absolute;
  left: 16%;
  bottom: 18%;
  z-index: 9999;
}

.conunt_num ul {
  display: flex;
  /* gap: 20px; */
}

.conunt_num ul li {
  background: #ffffff;
  border-radius: 10px;
  margin: 0 10px;
  padding: 10px 20px;
  text-align: center;
  border-top: 6px solid #003393;
  border-left: 6px solid #003393;
}

.conunt_num a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: #003393;
}

span#hours,
span#days,
span#minutes,
span#seconds {
  color: #003393;
  font-size: 24px;
  letter-spacing: 4%;
  font-weight: 700;
}

/* Counter End  */



.carousel-caption {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  text-align: left;
}


.top-header {
  background-color: #C6E7FA;
}

.mid-header {}

.mid-header .st>li>a {
  border-right: 2px solid #fff;
}


.sub_para {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 4%;
}




/* Crousel secion Custom start */

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

#template-mo-zay-hero-carousel .carousel-indicators li {
  margin-top: -50px;
}

.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity .6s ease;
}

#template-mo-zay-hero-carousel .carousel-control-next i,
#template-mo-zay-hero-carousel .carousel-control-prev i {
  /* color: #59ab6e !important; */
  color: #0d6b9e00 !important;
  font-size: 2.8em !important;
}

#template-mo-zay-hero-carousel {

  /* background: rgb(11,105,156);
  background: linear-gradient(180deg, rgba(11,105,156,1) 0%, rgba(177,218,214,1) 100%); */
}

/* Crousel secion Custom End */


/*  Home btn  section start */




/* Logo section start */

.log-sec {
  position: relative;
  width: 100%;
  z-index: 9900;
  line-height: normal;
  margin: auto;
}

.log-sec ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: end;
}

.log-sec>ul>li {
  display: inline-block;
}

.log-sec li {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  line-height: normal;
  /* vertical-align: middle; */
}

/* .log-sec>ul>li>a {
  padding: 20px 22px;
} */

.log-sec li a {
  padding: 15px;
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "poppins", sans-serif;
  box-sizing: border-box;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.log-sec li a:hover {
  color: #000;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

/* Logo section end */


.hdr_sec {
  position: relative;
  top: 100%;
}



.carousel-indicators [data-bs-target] {
  width: 14.21px;
  height: 14.21px;
  border-radius: 50%;
  margin-right: 16px;

}

/* Gallery section start */
.venue-about{

padding-top: 200px !important;
  padding-bottom: 100px !important;
}
.delhi-about{

padding-top: 200px !important;
  padding-bottom: 0px !important;
}
.wlcm_para {
  padding-top: 60px;
  padding-bottom: 60px;
}
.terms-para li{
  margin-top: 10px;

}

.Gallery_section .glry_spn {
  background: #fff;
  position: relative;
}

.Gallery_section {
  margin-bottom: 30px;
  text-align: center;
  position: relative;

}

.wlcm_para .wlcm_txt {
  font-size: 16px;
  font-weight: 400;
  margin: auto;
  text-align: justify;
}

/* .welc_section {
  padding-left: 15px;
} */

.welc_section h1 {
  font-size: 44px;
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}

.welc_section h1 span {
  color: #0066BB;
}
.welc_section h3 {
  font-size: 44px;
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}

.welc_section h3 span {
  color: #0066BB;
}

.read_more {
  display: inline-flex;
  padding: 14px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: #06B;
  color: #fff;
  border: none;
  transition: 0.3s ease;
}

.read_more:hover {
  background: #FFA500;
}

.Gallery_section::before {
  content: "";
  height: 1px;
  width: 100%;
  background: #ddd;
  position: absolute;
  margin-top: 1.5%;
  left: 0;
}

.Gallery_section .title {
  font-size: 32px;
  font-weight: 700;
  color: #003393;
}

.image-section img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}


.image-section .small-img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 285px;
  object-fit: cover;
  text-align: right;
}

.btn_glry {
  border-radius: 0;
  border: solid 2px #ffffff;
  bottom: 0px;
  right: 0;
  padding: 5px 28px;
  color: #ffffff;
  font-weight: 600;
}

.btn_glry:hover {
  border-radius: 0;
  border: solid 2px #a7a7a7;
  bottom: 0px;
  right: 0;
  padding: 5px 28px;
  color: #d1d1d1;
  font-weight: 600;
}




/* Gallery section End */
/* Organizing Committee Start */
.og_cmt {
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(../images/Group\ 19.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.og_section .glry_spn {

  position: relative;
}

.og_section {
  margin-bottom: 30px;
  text-align: center;
  position: relative;

}

.og_section .title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
}


.team-carousel .item {
  padding: 20px;
  text-align: center;
  background-color: #6849B1;
  color: white;
  border-radius: 10px;
}

.team-carousel img {
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.team-carousel h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffffff;
}

.team-carousel p {
  font-size: 14px;
  margin-bottom: 0;
  color: #ffffff;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  font-size: 18px;
}

.owl-prev {
  left: -45px;
}

.owl-next {
  right: -45px;
}

/* Organizing Committee End */

.chif_patronmain {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
  z-index: 1;
}

.chif_patronmain::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('./assets/images/chif.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}
.shape-left {
  left: 0;
  position: absolute;
  top: 0;
  z-index: 0;
  opacity: 0.9;
  max-width: 600px;
}

.shape-right {
  position: absolute;
  top: 0;
  z-index: 0;
  opacity: 0.9;
  right: 0;
  max-width: 300px;
}

.chif_patronmain .container {
  position: relative;
  z-index: 2;
}

.title-box {
  display: inline-block;
  background: #002c5e;
  color: #fff;
  padding: 10px 100px;
  font-weight: bold;
  border-radius: 0 0 20px 20px;
  font-size: 30px;
}

.name-single {
  font-size: 25px;
  font-weight: 600;
  margin: 30px 0;
}

.patrons-list p {
  margin: 5px 0;
  font-size: 25px;
  font-weight: 600;
}

.name-single-row {
  font-size: 25px;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 40px;
}
/* venue name */
.venue-info-box {
  position: relative;
  z-index: 10;
  margin-bottom: -80px;
}

.venue-box {
    background: linear-gradient(90deg, #002f6c, #0058a3);
    color: white;
    padding: 50px 30px;
    border-radius: 0px 110px 15px 0px;
    max-width: 1200px;
    margin-left: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.venue-icon {
  width: 100px;
  height: 100px;
  margin-left: 60px;
}

.venue-box h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 800;
  color: #fff;
}

.venue-box p {
  margin: 5px 0;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

.label {
  font-weight: 600;
  color: #ffcc00;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
}


/* footer section start  */
.footer_sec p {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 18.15px;
}

.footer {
  background: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
  color: #fff;
}

.footer a {
  color: #fff;
  text-decoration: none;
  display: flex;
  gap: 12px;
  line-height: 24px;
}

.footer .ftr_qlinks {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  text-align: left;
}

.footer .ftr_qlinksn {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  text-align: left;
  line-height: 24px;
}

.footer h6 {
  color: #fff;
  margin: 15px 0px;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
}

.footer a:hover {
  text-decoration: underline;
  color: #FFA500;
}

.footer .list-unstyled {
  column-count: 2;
}


.lst_ftr li {
  margin-bottom: 15px;
}

.footer_sec .ftr_end {
  border-top: 1px solid#004681;

}

.footer_sec .form-control {
  background-color: #000;
  margin-right: 2px;
  color: #ffffff;
}

.footer_sec .form-control::placeholder {
  color: #ffffff;
}

/* footer section End  */

/* contact us start */

.contact-section {
  padding: 50px 0;
  color: #ffffff;
}



.form-container {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}



.contact-section .form-container .form-control {
  padding: 16px 20px 16px 20px;
  border-radius: 5px 5px 5px 5px;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  background-color: #ffffff;
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  box-shadow: rgb(0 0 0 / 18%) 0px 0px 8px;
  border: 1px solid #f79322;
}




.contact h2 {
  font-size: 30px;
  color: #fdfdfd;
  font-weight: bold;
  text-transform: uppercase;
}

.contact_frm h2 {
  font-size: 30px;
  color: #222222;
  font-weight: bold;
  text-transform: uppercase;
}

.contact p {
  font-size: 16px;
  text-align: justify;
  color: #fff;
}


.contact-section .contact ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
}

section.contact ul li a i {
  color: #ffffff;
  background-color: #ffffff;
  font-size: 25px;
}

/* .map-responsive {
  position: relative;
  overflow: hidden;
  padding-top: 35%; /* 16:9 Aspect Ratio */
/* } */

/* .map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  border: 0;
}  */
/* contact us end */

/* Marquee Txt Start  */
.marque_sec {
  width: 100%;
  height: auto;
  background: #003393;
    overflow: hidden;
    white-space: nowrap;
 
}

.scroll-left {
  height: 50px;
  overflow: hidden;
  position: relative;
  background: #003393;
  border: none;
}

.scroll-left p {
  color: #ffffff;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 50px;
  text-align: center;
  /* Starting position */
  transform: translateX(100%);
  /* Apply animation to this element */
  animation: scroll-left 20s linear infinite;
}

/* Move it (define the animation) */
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Marquee Txt End */


/* Committees Page Start   */
.crd_ctnr {
  padding-top: 2rem;
}

.crd_ctnrr {
  padding: 0px;
}

.crd_cmn {
  border: none;
  background-color: #003393;
  border-radius: 6px;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
}

.crd_cmn img {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 6px;
}

.crd_ttl {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.crd_txt {
  color: #ffffff;
  font-size: 0.9rem;
}

/* Committees Page End  */
/* Contact Us Start  */
.cont_pg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}

.contact-section {
  padding: 180px 0;
  color: #ffffff;
}
.icon-premium i{
  color: #ffc107;
    font-size: 18px;

}
.info-get p{
  font-size: 16px;

}
.commitee{
  padding-top: 150px;
 
}
.cmty-img {
    text-align: -webkit-center;
}
.cmty-img img {
    max-width: 200px;
    border-radius: 50%;
    border: 2px solid #003393;
    box-shadow: 3px 4px 10px rgba(0,0,0,0.1);
}
.item1{
  margin-top: 30px;
  margin-bottom: 30px;
}
.info-box {
  background-color: #003393;
  /* background: url(../images/contactfrm.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  color: #ffffff;
  padding: 30px;
  border-radius: 8px;
}
.info-get h5{
  font-size: 17px;

}

.info-box h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 30px;
}
.frm-dtl {
    border-radius: 0px;
    background-color: #003393;
}

.info-box .info-item {
  margin-bottom: 20px;
}

.info-box .info-item i {
  font-size: 24px;
  margin-right: 15px;
}

.info-box a {
  color: white;
  text-decoration: none;
}

.form-container {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.frm-btn {
  background-color: #003393;
  color: #ffffff;
  width: 100%;
}

.frm-btn:hover {
  border-color: #003393;
  color: #003393;
}
.cont-head{
  color: #003393;

}
.frm-dtl::placeholder {
  color: #ffffff;  
  opacity: 1;
}
.frm-dtl:focus::placeholder {
  color: #000000;    /* placeholder turns white on focus */
}
.contact-section .form-container .form-control {
  padding: 16px 20px 16px 20px;
  border-radius: 5px 5px 5px 5px;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  background-color: #ffffff;
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  box-shadow: rgb(0 0 0 / 18%) 0px 0px 8px;
  border: 1px solid #003393;
}




.contact h2 {
  font-size: 28px;
  color: #fdfdfd;
  font-weight: bold;
  text-transform: uppercase;
}

.contact_frm h2 {
  font-size: 30px;
  color: #222222;
  font-weight: bold;
  text-transform: uppercase;
}

.contact p {
  font-size: 16px;
  text-align: justify;
  color: #fff;
}

.contact ul li {
  background-color: #003393;
  list-style: none;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 7px 29px 0px;
  padding: 24px 30px;
  margin: 20px 0;
  border-radius: 8px;
}

.contact-section .contact ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
}

section.contact ul li a i {
  color: #ffffff;
  background-color: #ffffff;
  font-size: 25px;
}

.map-responsive {
  position: relative;
  overflow: hidden;
  padding-top: 35%;
  /* 16:9 Aspect Ratio */
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  border: 0;
}

.og_section .cont_spn {
  background: #ffffff;
  position: relative;
  color: #000000;
}

/* Contact Us End */


/* attraction of delhi */
.attraction-box {
  background-color: #fff;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.attraction-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.attraction-img {
  transition: transform 0.4s ease;
}

.attraction-box:hover .attraction-img {
  transform: scale(1.05);
}

.fw-semibold {
  font-weight: 600;
}

.text-muted {
  color: #6c757d;
}

.terms-para{
  padding-top: 100px !important;

}

.reg-cont strong{
  color: #d4b214;

}
.reg-head{
  color: #502aa3;
}
.table-reg th{
  background-color: #00549e;
  color: #fff;
}
.highlight-reg{
  background-color: #f3d446 !important;

}
.note strong{
  color: #d4b214;

}
.img-side{
    max-width:450px;
    
}
.timeline-committee {
    background: #f3f7fa;
    font-family: 'Segoe UI', sans-serif;
  }

  .timeline {
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 900px;
  }

  .timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #007bff;
  }

  .timeline-block {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
  }

  .timeline-icon {
    position: absolute;
    left: 10px;
    top: 5px;
    background: #d7a50e;
    color: white;
    width: 10px;
    height: 10px;
    border-radius: 0%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
  }

  .timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .timeline-content h4 {
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
  }

  .timeline-content ul {
    padding-left: 20px;
    margin: 0;
  }

  .timeline-content ul li {
    margin-bottom: 5px;
  }

  .multi-list {
    columns: 2;
    -webkit-columns: 3;
    -moz-columns: 2;
  }

  
  
  
  /*.regst_button{*/
  /*    display: inline-block;*/
  /*  color: rgb(255, 255, 255);*/
  /*  font-size: 22px;*/
  /*  background: #e72b16;*/
  /*  padding: 6px 15px;*/
  /*  margin: 15px 0px 0px;*/
      
  /*}*/



.timeline-content.table {
    width: 100%;
    border: 1px solid #ddd;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    
    
}
.timeline1{
    padding-top:100px;
    
}

th, td {
    padding: 20px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #f9f9f9;
}
.abst li{
  margin-top: 10px;
  margin-bottom: 10px;

}
.gudline_abs h2 {
    font-size: 20px;
    font-weight: 600;
}
.gudline_abs li {
    font-size: 16px;
    color: #000;
    line-height: 30px;
    list-style: disc;
}
.main_hdr{
    margin-bottom:100px;
    
}