:root{
  --navy:#071B2B;
  --navy2:#0B2B42;
  --teal:#00B4B0;
  --gold:#D6A54A;
  --ivory:#F8F5EE;
  --cream:#FFF8EA;
  --ice:#EDF9F8;
  --text:#1E293B;
  --muted:#64748B;
  --white:#fff;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  margin:0;
  font-family:"Poppins",sans-serif;
  color:var(--text);
  background:var(--ivory);
  overflow-x:hidden;
}

p,
li{
  font-size:15.5px;
  line-height:1.8;
}

img,
video,
iframe{
  max-width:100%;
}

/* =========================
   PRELOADER - DESKTOP + MOBILE RESPONSIVE
========================= */
#preloader{
  position:fixed;
  inset:0;
  width:100%;
  height:100vh;
  min-height:100vh;
  z-index:999999;
  overflow:hidden;
  background:#03111d url("pre.jpg") center center / cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity .8s ease, visibility .8s ease;
}

/* optional: if you use <img src="pre.jpg"> inside #preloader */
#preloader img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  z-index:1;
}

#preloader.hide{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.preloader-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:rgba(0,0,0,.08);
}

.loader-content{
  position:absolute;
  left:50%;
  bottom:8%;
  transform:translateX(-50%);
  z-index:3;
  width:min(82vw,460px);
}

.progress-wrap{
  width:100%;
  height:28px;
  padding:4px;
  border-radius:50px;
  background:rgba(0,0,0,.78);
  overflow:hidden;
  border:2px solid rgba(255,255,255,.9);
  box-shadow:
    0 0 22px rgba(255,255,255,.22),
    0 0 32px rgba(0,180,176,.20),
    inset 0 0 10px rgba(255,255,255,.18);
}

.progress-bar-custom{
  width:0%;
  height:100%;
  border-radius:50px;
  background:linear-gradient(90deg,#ffffff 0%,#f1f1f1 55%,#d6a54a 100%);
  animation:loaderProgress 2.5s ease forwards;
}

@keyframes loaderProgress{
  0%{width:0%}
  100%{width:100%}
}

@media(min-width:1600px){
  .loader-content{
    width:520px;
    bottom:8%;
  }

  .progress-wrap{
    height:34px;
  }
}

@media(max-width:991px){
  .loader-content{
    width:min(84vw,390px);
    bottom:7%;
  }

  .progress-wrap{
    height:24px;
  }
}

@media(max-width:767px){
  #preloader{
    background-size:cover;
    background-position:center center;
  }

  #preloader img{
    object-fit:cover;
    object-position:center center;
  }

  .loader-content{
    width:78vw;
    bottom:9%;
  }

  .progress-wrap{
    height:22px;
    padding:3px;
  }
}

@media(max-width:480px){
  .loader-content{
    width:82vw;
    bottom:8%;
  }

  .progress-wrap{
    height:20px;
    border-width:1px;
  }
}

@media(max-width:360px){
  .loader-content{
    width:86vw;
    bottom:7%;
  }

  .progress-wrap{
    height:18px;
  }
}

@media(max-height:500px){
  .loader-content{
    bottom:18px;
    width:min(70vw,340px);
  }

  .progress-wrap{
    height:16px;
  }
}


/* =========================
   NAVBAR
========================= */
.navbar{
  background:rgba(7,27,43,.96);
  backdrop-filter:blur(18px);
  padding:14px 0;
  border-bottom:1px solid rgba(214,165,74,.35);
}

.navbar .container{
  max-width:1420px;
}

.navbar-brand{
  font-family:"Cormorant Garamond",serif;
  font-size: 20px;
  font-weight:700;
  color:var(--gold)!important;
  white-space:nowrap;
}

.nav-link{
  font-family:"Poppins",sans-serif;
  color:#fff!important;
  font-size:14px;
  font-weight:500;
  text-transform:uppercase;
  padding:10px 10px!important;
}

.nav-link:hover,
.nav-link.active{
  color:var(--gold)!important;
}

.dropdown-menu{
  background:var(--navy);
  border:1px solid rgba(214,165,74,.35);
  border-radius:14px;
  padding:10px;
}

.dropdown-item{
  color:#fff;
  font-size:13px;
  border-radius:8px;
}

.dropdown-item:hover{
  background:linear-gradient(135deg,var(--teal),var(--gold));
  color:var(--navy);
}

@media(min-width:992px){
  .dropdown:hover .dropdown-menu{
    display:block;
    animation:fadeDown .25s ease;
  }
}

@keyframes fadeDown{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:translateY(0)}
}

@media(max-width:991px){
  .navbar-collapse{
    background:var(--navy);
    margin-top:14px;
    border-radius:18px;
    padding:15px;
  }

  .navbar .dropdown-menu{
    position:static!important;
    float:none;
    width:100%;
    margin-top:6px;
  }
}

/* =========================
   HERO FIXED BANNER + CONTENT SLIDER
========================= */
.hero-slide{
  width:100%;
  height:620px;
  min-height:auto;
  background-size:cover;
  background-position:center center;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-slide:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(7,27,43,.92) 0%,
    rgba(7,27,43,.72) 35%,
    rgba(7,27,43,.28) 65%,
    rgba(7,27,43,.05) 100%
  );
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:5;
  padding-top:0;
}

.content-slider{
  position:relative;
  width:100%;
  max-width:620px;
  height:360px;
  overflow:hidden;
}

.content-item{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(35px);
  transition:opacity .6s ease, transform .6s ease, visibility .6s ease;
}

.content-item.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}

.content-item:not(.active){
  display:none;
}

.hero-kicker{
  display:inline-block;
  background:rgba(255,255,255,.12);
  color:var(--gold);
  border:1px solid rgba(214,165,74,.45);
  padding: 6px 20px;
  border-radius:50px;
  font-weight:800;
  margin-bottom: 12px;
  letter-spacing:.5px;
  font-size: 16px;
}

.hero-title{
  font-family:"Cormorant Garamond",serif;
  font-size: 53px;
  font-weight:700;
  color:#fff;
  line-height: 72px;
  margin-bottom: 12px;
  text-shadow:0 15px 40px rgba(0,0,0,.45);
}

.hero-title span{
  color:var(--gold);
}

.hero-subtitle{
  font-family:"Montserrat",sans-serif;
  color:var(--teal);
  letter-spacing:4px;
  font-size:22px;
  font-weight:800;
  margin-bottom: 3px;
}

.hero-text{
  color:#e9f6f6;
  max-width:560px;
  font-size:18px;
  margin-bottom:28px;
}

.btn-main{
  background:linear-gradient(135deg,var(--gold),#F3D179);
  color:var(--navy);
  border:0;
  border-radius:50px;
  padding:13px 34px;
  font-weight:900;
  box-shadow:0 15px 35px rgba(214,165,74,.25);
  transition:.3s;
}

.btn-main:hover{
  transform:translateY(-3px);
  color:var(--navy);
}

.btn-outline-main{
  border:2px solid var(--teal);
  color:#fff;
  border-radius:50px;
  padding:11px 30px;
  font-weight:800;
}

.btn-outline-main:hover{
  background:var(--teal);
  color:var(--navy);
}

@media(max-width:991px){
  .hero-slide{
    height:520px;
    padding:0;
    background-position:65% center;
  }

  .hero-content{
    padding:110px 15px 0;
  }

  .content-slider{
    max-width:100%;
    height:340px;
  }

  .hero-title{
    font-size:44px;
  }

  .hero-subtitle{
    font-size:18px;
    letter-spacing:2px;
  }

  .hero-text{
    font-size:15px;
  }
}

@media(max-width:575px){
  .hero-slide{
    height:470px;
    background-position:68% center;
  }

  .content-slider{
    height:320px;
  }

  .hero-title{
    font-size: 26px;
  }

  .hero-kicker{
    font-size: 12px;
    padding:6px 10px;
  }

  .hero-subtitle{
    font-size: 13px;
    letter-spacing:2px;
  }

  .hero-text{
    font-size:13px;
    max-width:260px;
  }

  .btn-main,
  .btn-outline-main{
    padding: 8px 10px;
    font-size: 9px;
  }
}

/* =========================
   COMMON
========================= */
.section-padding{
  padding:90px 0;
}

.section-title{
  font-family:"Cormorant Garamond",serif;
  font-size:52px;
  color:var(--navy);
  font-weight:700;
}

.section-title span{
  color:var(--gold);
}

.section-title.light,
.bg-navy .section-title{
  color:#fff;
}

.section-subtitle{
  color:var(--muted);
  max-width:760px;
  margin:auto;
}

.title-line{
  width:90px;
  height:4px;
  border-radius:20px;
  margin:20px auto 45px;
  background:linear-gradient(90deg,var(--teal),var(--gold));
}

.bg-cream{
  background:
    radial-gradient(circle at 10% 10%,rgba(214,165,74,.16),transparent 28%),
    linear-gradient(135deg,#fffaf0,#f7efe0);
}

.bg-white{
  background:#fff;
}

.bg-ice{
  background:
    radial-gradient(circle at 90% 20%,rgba(0,180,176,.14),transparent 25%),
    linear-gradient(135deg,#edf9f8,#ffffff);
}

.bg-navy{
  background:
    radial-gradient(circle at 10% 10%,rgba(0,180,176,.20),transparent 25%),
    linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
}

.bg-pattern{
  background-color:#f8f5ee;
  background-image:
    linear-gradient(90deg,rgba(7,27,43,.04) 1px,transparent 1px),
    linear-gradient(rgba(7,27,43,.04) 1px,transparent 1px);
  background-size:55px 55px;
}

section{
  overflow:hidden;
}

[data-aos]{
  overflow-anchor:none;
}

/* =========================
   CARDS
========================= */
.lux-card{
  background:#fff;
  border-radius:28px;
  text-align:justify;
  padding:32px;
  height:100%;
  box-shadow:0 22px 60px rgba(7,27,43,.08);
  border:1px solid rgba(214,165,74,.16);
  transition:.35s;
  position:relative;
  overflow:hidden;
}

.lux-card:before{
  content:"";
  position:absolute;
  width:120px;
  height:120px;
  right:-50px;
  bottom:-50px;
  background:radial-gradient(circle,rgba(0,180,176,.18),transparent 70%);
}

.lux-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 80px rgba(7,27,43,.16);
}

.glow-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20);
  border-radius:28px;
  padding:32px;
  color:#fff;
  backdrop-filter:blur(14px);
  box-shadow:0 25px 70px rgba(0,0,0,.22);
  transition:.35s;
}

.glow-card:hover{
  transform:translateY(-10px);
  border-color:var(--gold);
}

/* =========================
   COUNTDOWN
========================= */
.countdown-section{
  width:100%;
  margin-top:-35px;
  position:relative;
  z-index:10;
}

.countdown-card{
  background:#fff;
  border-radius:30px;
  padding:32px;
  box-shadow:0 30px 80px rgba(7,27,43,.18);
  border:1px solid rgba(214,165,74,.25);
  max-width:100%;
  overflow:hidden;
}

.countdown-label{
  color:var(--gold);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size: 29px;
}

.countdown-title{
  font-family:"Cormorant Garamond",serif;
  color:var(--navy);
  font-size:36px;
  font-weight:700;
}

.countdown-box{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.countdown-box div{
  background:linear-gradient(145deg,var(--navy),var(--navy2));
  color:#fff;
  border-radius:20px;
  padding:20px 10px;
  text-align:center;
}

.countdown-box span{
  display:block;
  font-size:36px;
  color:var(--gold);
  font-weight:900;
}

.countdown-box small{
  text-transform:uppercase;
  font-size:12px;
  color:#dff;
}

@media(max-width:991px){
  .countdown-box{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:575px){
  .countdown-section{
    margin-top:-20px;
  }

  .countdown-card{
    padding:22px 15px;
  }

  .countdown-box span{
    font-size:28px;
  }
}

/* =========================
   WHY / STATS / TIMELINE
========================= */
.icon-circle{
  width:70px;
  height:70px;
  border-radius:22px;
  background:linear-gradient(135deg,var(--teal),var(--gold));
  color:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  margin-bottom:22px;
}

.stat-box{
  text-align:center;
  padding:30px;
}

.stat-number{
  font-size:46px;
  font-weight:900;
  color:var(--gold);
}

.stat-label{
  font-weight:700;
  color:#d9eeee;
}

.timeline-card{
  background:#fff;
  border-radius:26px;
  padding:28px;
  border-left:5px solid var(--gold);
  box-shadow:0 20px 55px rgba(7,27,43,.08);
  transition:.35s;
}

.timeline-card:hover{
  transform:translateY(-10px);
  border-left-color:var(--teal);
}

.day-badge{
  background:var(--navy);
  color:var(--gold);
  padding:7px 16px;
  border-radius:40px;
  display:inline-block;
  font-weight:900;
  margin-bottom:15px;
}

/* =========================
   PROFILE / COMMITTEE
========================= */
.profile-card{
  background:#fff;
  border-radius:28px;
  padding:28px;
  text-align:center;
  height:100%;
  border:1px solid rgba(214,165,74,.18);
  box-shadow:0 20px 60px rgba(7,27,43,.09);
  transition:.35s;
  position:relative;
  overflow:hidden;
}

.profile-card.dark{
  background:linear-gradient(145deg,var(--navy),var(--navy2));
  color:#fff;
}

.profile-card.dark h5{
  color:#fff;
}

.profile-card.dark p{
  color:#d7eeee;
}

.profile-card:before{
  content:"";
  position:absolute;
  top:0;
  left:-80%;
  width:50%;
  height:100%;
  background:linear-gradient(90deg,transparent,rgba(214,165,74,.25),transparent);
  transform:skewX(-20deg);
  transition:.6s;
}

.profile-card:hover:before{
  left:130%;
}

.profile-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 80px rgba(7,27,43,.16);
}

.profile-img{
  width: 145px !important;
  height:145px;
  border-radius:50%;
  object-fit:cover;
  padding:5px;
  background:linear-gradient(135deg,var(--teal),var(--gold));
  margin-bottom:18px;
}

.profile-card h5{
  color:var(--navy);
  font-weight:900;
  margin-bottom:5px;
}

.profile-card p{
  color:var(--muted);
  margin:0;
  font-weight:600;
}

.role-badge{
  display:inline-block;
  margin-top:12px;
  padding:7px 16px;
  border-radius:40px;
  background:linear-gradient(135deg,var(--teal),var(--gold));
  color:var(--navy);
  font-size:12px;
  font-weight:900;
}

.feature-card{
  background:#fff;
  border-radius:34px;
  padding:38px;
  box-shadow:0 28px 80px rgba(7,27,43,.12);
  border:1px solid rgba(214,165,74,.20);
  position:relative;
  overflow:hidden;
}

.feature-card:before{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-80px;
  width:220px;
  height:220px;
  background:radial-gradient(circle,rgba(0,180,176,.18),transparent 70%);
}

.feature-img{
  width:170px;
  height:170px;
  object-fit:cover;
  border-radius:50%;
  padding:6px;
  background:linear-gradient(135deg,var(--teal),var(--gold));
  box-shadow:0 20px 50px rgba(7,27,43,.18);
}

.feature-card h3{
  font-weight:900;
  color:var(--navy);
}

/* =========================
   TABLES / REGISTRATION
========================= */
.table{
  margin:0;
}

.table thead th{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  vertical-align:middle;
  padding:16px;
}

.table tbody td{
  padding:15px;
  font-weight:600;
}

.table tbody tr:nth-child(even){
  background:#f7fbfb;
}

.registration-table-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border-radius:24px;
}

.registration-table{
  min-width:700px;
  margin-bottom:0;
}

.registration-table thead th{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  border:none;
  padding:18px;
  font-weight:700;
}

.registration-table tbody td{
  padding:18px;
  vertical-align:middle;
}

.registration-table tbody tr:nth-child(even){
  background:#f9fbfc;
}

.registration-table tbody td:first-child{
  font-weight:700;
  color:var(--navy);
}

.registration-section{
  background:
    radial-gradient(circle at 10% 10%,rgba(214,165,74,.16),transparent 28%),
    radial-gradient(circle at 90% 20%,rgba(0,180,176,.14),transparent 28%),
    linear-gradient(135deg,#fff8ea,#eefafa);
}

.registration-card{
  background:#fff;
  padding:35px;
  border-radius:30px;
  height:100%;
  box-shadow:0 25px 70px rgba(7,27,43,.10);
  position:relative;
  overflow:hidden;
  border:1px solid rgba(214,165,74,.25);
  transition:.35s;
}

.registration-card:before{
  content:"";
  position:absolute;
  right:-60px;
  bottom:-60px;
  width:170px;
  height:170px;
  background:radial-gradient(circle,rgba(0,180,176,.18),transparent 70%);
}

.registration-card:hover{
  transform:translateY(-10px);
  box-shadow:0 35px 90px rgba(7,27,43,.18);
}

.registration-card.featured{
  background:linear-gradient(145deg,var(--navy),var(--navy2));
  color:#fff;
  transform:scale(1.04);
}

.registration-card.featured:hover{
  transform:scale(1.04) translateY(-10px);
}

.registration-card h3{
  font-weight:900;
  color:var(--navy);
  margin-bottom:15px;
}

.registration-card.featured h3{
  color:#fff;
}

.price{
  font-size:48px;
  font-weight:900;
  color:var(--gold);
  margin-bottom:10px;
}

.badge-box{
  display:inline-block;
  padding:8px 16px;
  border-radius:30px;
  background:linear-gradient(135deg,var(--teal),var(--gold));
  color:var(--navy);
  font-size:12px;
  font-weight:900;
  margin-bottom:18px;
  text-transform:uppercase;
}

.popular-badge{
  position:absolute;
  top:18px;
  right:22px;
  background:var(--teal);
  color:var(--navy);
  padding:7px 14px;
  border-radius:30px;
  font-size:12px;
  font-weight:900;
}

.reg-date{
  color:var(--muted);
  font-weight:600;
  margin-bottom:22px;
}

.registration-card.featured .reg-date{
  color:#dff;
}

.registration-card ul{
  padding:0;
  list-style:none;
  margin:0 0 26px;
}

.registration-card li{
  padding:10px 0;
  border-top:1px solid rgba(7,27,43,.10);
  font-weight:600;
}

.registration-card.featured li{
  border-top:1px solid rgba(255,255,255,.16);
}

.fee-table-section{
  background:#fff;
}

.fee-table-card{
  background:#fff;
  padding:30px;
  border-radius:30px;
  box-shadow:0 25px 70px rgba(7,27,43,.10);
  border:1px solid rgba(214,165,74,.18);
  overflow:hidden;
}

.gst-note{
  background:linear-gradient(135deg,#fff8e6,#eefafa);
  border-radius:18px;
  padding:18px;
  color:var(--navy);
  font-weight:700;
  margin-top:20px;
}

@media(max-width:991px){
  .registration-card.featured{
    transform:scale(1);
  }

  .registration-card.featured:hover{
    transform:translateY(-10px);
  }
}

@media(max-width:768px){
  .registration-table{
    min-width:650px;
  }

  .registration-table thead th{
    font-size:13px;
    padding:14px 10px;
  }

  .registration-table tbody td{
    font-size:13px;
    padding:12px 10px;
  }
}

/* =========================
   BENEFITS / POLICY
========================= */
.registration-benefits{
  background:linear-gradient(135deg,#edf9f8,#ffffff);
}

.benefit-card{
  background:#fff;
  padding:30px;
  border-radius:24px;
  text-align:center;
  height:100%;
  box-shadow:0 18px 55px rgba(7,27,43,.08);
  border:1px solid rgba(214,165,74,.18);
  transition:.35s;
}

.benefit-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 80px rgba(7,27,43,.14);
}

.benefit-card i{
  width:70px;
  height:70px;
  border-radius:22px;
  background:linear-gradient(135deg,var(--teal),var(--gold));
  color:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  margin:0 auto 18px;
}

.benefit-card h5{
  font-weight:900;
  color:var(--navy);
  margin:0;
}

.policy-section{
  background:
    radial-gradient(circle at 10% 10%,rgba(214,165,74,.18),transparent 28%),
    radial-gradient(circle at 90% 30%,rgba(0,180,176,.16),transparent 30%),
    linear-gradient(135deg,#fffaf0,#eefafa);
}

.policy-card{
  height:100%;
  padding:34px 30px;
  border-radius:30px;
  background:#fff;
  border:1px solid rgba(214,165,74,.22);
  box-shadow:0 25px 70px rgba(7,27,43,.10);
  position:relative;
  overflow:hidden;
  transition:.35s;
}

.policy-card:before{
  content:"";
  position:absolute;
  right:-60px;
  bottom:-60px;
  width:170px;
  height:170px;
  background:radial-gradient(circle,rgba(0,180,176,.20),transparent 70%);
}

.policy-card:hover{
  transform:translateY(-10px);
  box-shadow:0 35px 90px rgba(7,27,43,.16);
}

.policy-card.featured{
  background:linear-gradient(145deg,var(--navy),var(--navy2));
  color:#fff;
}

.policy-card.featured h3,
.policy-card.featured h4,
.policy-card.featured li{
  color:#fff;
}

.policy-icon{
  width:68px;
  height:68px;
  border-radius:22px;
  background:linear-gradient(135deg,var(--teal),var(--gold));
  color:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin-bottom:22px;
  box-shadow:0 15px 35px rgba(214,165,74,.25);
}

.policy-card h3,
.policy-card h4{
  color:var(--navy);
  font-weight:900;
  margin-bottom:18px;
  font-size:24px;
}

.policy-card ul{
  padding-left:0;
  list-style:none;
  margin-bottom:0;
}

.policy-card li{
  position:relative;
  padding-left:26px;
  margin-bottom:12px;
  color:var(--text);
  font-size:15px;
  line-height:1.7;
}

.policy-card li:before{
  content:"\F26A";
  font-family:"bootstrap-icons";
  position:absolute;
  left:0;
  top:1px;
  color:var(--gold);
  font-size:15px;
}

.policy-note{
  margin-top:22px;
  padding:16px;
  border-radius:18px;
  background:linear-gradient(135deg,#fff8e6,#eefafa);
  color:var(--navy);
  font-weight:600;
}

/* =========================
   INNER BANNER / INNER HERO
========================= */
.inner-hero{
  min-height:420px;
  position:relative;
  background:
    linear-gradient(90deg,rgba(7,27,43,.94),rgba(7,27,43,.72),rgba(7,27,43,.25)),
    url("2.png") center/cover no-repeat;
  display:flex;
  align-items:center;
}

.inner-hero:after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(90deg,rgba(214,165,74,.08) 1px,transparent 1px),
    linear-gradient(rgba(0,180,176,.08) 1px,transparent 1px);
  background-size:70px 70px;
}

.inner-content{
  position:relative;
  z-index:2;
  color:#fff;
}

.inner-title{
  font-family:"Cormorant Garamond",serif;
  font-size:64px;
  font-weight:700;
  line-height:1;
}

.inner-title span{
  color:var(--gold);
}

.breadcrumb-text{
  color:#dff;
  font-weight:600;
}

.breadcrumb-text a{
  color:var(--gold);
  text-decoration:none;
}

.inner-banner{
  padding:130px 0 90px;
  background:
    linear-gradient(90deg,rgba(7,27,43,.95),rgba(7,27,43,.72),rgba(7,27,43,.38)),
    url("2.png") center/cover no-repeat;
  color:#fff;
  position:relative;
  overflow:hidden;
}

.inner-banner:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(90deg,rgba(214,165,74,.08) 1px,transparent 1px),
    linear-gradient(rgba(0,180,176,.08) 1px,transparent 1px);
  background-size:70px 70px;
  opacity:.55;
}

.inner-banner .container{
  position:relative;
  z-index:2;
}

.page-tag{
  display:inline-block;
  background:linear-gradient(135deg,var(--gold),#F3D179);
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  font-weight:800;
  color:var(--navy);
  margin-bottom:18px;
}

.page-title{
  font-family:"Cormorant Garamond",serif;
  font-size:70px;
  font-weight:700;
  line-height:1;
  margin-bottom:18px;
}

.page-title span{
  color:var(--gold);
}

.page-desc{
  color:#e9f6f6;
  max-width:720px;
  font-size:17px;
}

.event-date-box{
  background:rgba(255,255,255,.10);
  padding:28px;
  border-radius:26px;
  backdrop-filter:blur(15px);
  border:1px solid rgba(255,255,255,.20);
  box-shadow:0 25px 70px rgba(0,0,0,.22);
}

.event-date-box h5{
  color:var(--gold);
  font-weight:800;
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:1px;
}

.event-date-box h3{
  font-weight:900;
  margin:10px 0;
}

/* =========================
   VENUE
========================= */
.venue-section{
  background:
    linear-gradient(90deg,rgba(7,27,43,.90),rgba(7,27,43,.58)),
    url("images/venue-1.jpg") center/cover fixed no-repeat;
  color:#fff;
}

.venue-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(18px);
  border-radius:30px;
  padding:40px;
}

.venue-card img{
  border-radius:22px;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.venue-about-card{
  background:#fff;
  color:var(--text);
  border-radius:30px;
  padding:36px;
  box-shadow:0 25px 80px rgba(0,0,0,.22);
}

.venue-feature{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-top:18px;
}

.venue-feature i{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--teal),var(--gold));
  color:var(--navy);
  font-size:22px;
}

.venue-img-box img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:0 25px 80px rgba(0,0,0,.30);
  border:4px solid rgba(255,255,255,.25);
}

.venue-inner-banner{
  padding:130px 0 90px;
  background:linear-gradient(90deg,rgba(7,27,43,.92),rgba(7,27,43,.72),rgba(7,27,43,.25)),url("ve.jpg") center/cover no-repeat;
  color:#fff;
}

.venue-page-section{
  background:linear-gradient(135deg,#fff8ea,#eefafa);
  padding:90px 0;
}

.venue-info-card{
  background:#fff;
  border-radius:32px;
  padding:38px;
  height:100%;
  box-shadow:0 25px 75px rgba(7,27,43,.12);
  border:1px solid rgba(214,165,74,.22);
}

.venue-info-card h3{
  color:var(--navy);
  font-weight:900;
}

.venue-main-img{
  width:100%;
  height:100%;
  min-height:430px;
  object-fit:cover;
  border-radius:32px;
  box-shadow:0 25px 75px rgba(7,27,43,.18);
}

.venue-gallery{
  background:#fff;
  padding:90px 0;
}

.gallery-card{
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(7,27,43,.10);
  transition:.35s;
}

.gallery-card:hover{
  transform:translateY(-10px);
}

.gallery-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

/* =========================
   CONTACT
========================= */
.contact-inner-banner{
  padding:130px 0 90px;
  background:linear-gradient(90deg,rgba(7,27,43,.94),rgba(7,27,43,.72),rgba(7,27,43,.25)),url("2.png") center/cover no-repeat;
  color:#fff;
}

.contact-section{
  padding:90px 0;
  background:linear-gradient(135deg,#fff8ea,#eefafa);
}

.contact-card{
  background:#fff;
  border-radius:30px;
  padding:35px;
  height:100%;
  box-shadow:0 25px 75px rgba(7,27,43,.10);
  border:1px solid rgba(214,165,74,.20);
  transition:.35s;
}

.contact-card:hover{
  transform:translateY(-8px);
}

.contact-card.dark{
  background:linear-gradient(145deg,var(--navy),var(--navy2));
  color:#fff;
}

.contact-card h3{
  color:var(--navy);
  font-weight:900;
  margin-bottom:22px;
}

.contact-card.dark h3{
  color:#fff;
}

.contact-icon{
  width:68px;
  height:68px;
  border-radius:22px;
  background:linear-gradient(135deg,var(--teal),var(--gold));
  color:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin-bottom:20px;
}

.contact-list{
  padding:0;
  margin:0;
  list-style:none;
}

.contact-list li{
  display:flex;
  gap:14px;
  margin-bottom:18px;
  align-items:flex-start;
}

.contact-list li i{
  width:38px;
  height:38px;
  border-radius:12px;
  background:linear-gradient(135deg,#eefafa,#fff8ea);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 38px;
  font-size:18px;
}

.contact-list strong{
  display:block;
  color:var(--navy);
  margin-bottom:3px;
}

.contact-card.dark .contact-list strong{
  color:var(--gold);
}

.contact-card.dark .contact-list li i{
  background:rgba(255,255,255,.10);
}

.form-card{
  background:#fff;
  border-radius:34px;
  padding:38px;
  box-shadow:0 25px 80px rgba(7,27,43,.12);
  border:1px solid rgba(214,165,74,.20);
}

.form-control,
.form-select{
  height:54px;
  border-radius:16px;
  border:1px solid rgba(7,27,43,.12);
  padding:12px 16px;
  font-size:15px;
  box-shadow:none!important;
}

textarea.form-control{
  height:140px;
}

.form-control:focus,
.form-select:focus{
  border-color:var(--gold);
}

.contact-btn{
  background:linear-gradient(135deg,var(--gold),#F3D179);
  color:var(--navy);
  border-radius:50px;
  padding:13px 34px;
  font-weight:900;
  border:0;
}

.contact-btn:hover{
  color:var(--navy);
  transform:translateY(-3px);
}

.quick-contact{
  background:#fff;
  padding:90px 0;
}

.quick-box{
  background:linear-gradient(135deg,#fff8ea,#eefafa);
  border-radius:30px;
  padding:38px;
  text-align:center;
  height:100%;
  border:1px solid rgba(214,165,74,.20);
  box-shadow:0 20px 60px rgba(7,27,43,.08);
  transition:.35s;
}

.quick-box:hover{
  transform:translateY(-8px);
}

.quick-box i{
  width:70px;
  height:70px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
  background:linear-gradient(135deg,var(--teal),var(--gold));
  color:var(--navy);
  font-size:34px;
}

.quick-box h4{
  font-weight:900;
  color:var(--navy);
}

.quick-box a{
  color:var(--navy);
  text-decoration:none;
  font-weight:700;
}

/* =========================
   TOUR
========================= */
.tour-inner-banner{
  padding:130px 0 90px;
  color:#fff;
}

.tour-page-section{
  padding:90px 0;
  background:linear-gradient(135deg,#fff8ea,#eefafa);
}

.tour-tabs{
  justify-content:center;
  gap:18px;
  margin-bottom:45px;
}

.tour-tabs .nav-link{
  background:#fff!important;
  color:var(--navy)!important;
  border-radius:50px;
  padding:14px 32px!important;
  font-weight:900;
  box-shadow:0 15px 45px rgba(7,27,43,.10);
  border:1px solid rgba(214,165,74,.25);
}

.tour-tabs .nav-link.active{
  background:linear-gradient(135deg,var(--gold),#F3D179)!important;
  color:var(--navy)!important;
}

.tour-card{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  height:100%;
  box-shadow:0 22px 60px rgba(7,27,43,.10);
  border:1px solid rgba(214,165,74,.18);
  transition:.35s;
}

.tour-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 80px rgba(7,27,43,.18);
}

.tour-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:.45s;
}

.tour-card:hover img{
  transform:scale(1.08);
}

.tour-content{
  padding:24px;
}

.tour-content h5{
  color:var(--navy);
  font-weight:800;
  margin-bottom:10px;
}

.tour-content p{
  color:var(--muted);
  margin:0;
}

.tour-main-card{
  background:#fff;
  border-radius:34px;
  padding:38px;
  box-shadow:0 25px 80px rgba(7,27,43,.12);
  border:1px solid rgba(214,165,74,.20);
}

.tour-img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:0 25px 70px rgba(7,27,43,.18);
}

.tour-info-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin:28px 0;
}

.tour-info-box{
  background:linear-gradient(135deg,#fff8ea,#eefafa);
  padding:18px;
  border-radius:20px;
  text-align:center;
  border:1px solid rgba(214,165,74,.20);
}

.tour-info-box i{
  font-size:28px;
  color:var(--gold);
  margin-bottom:8px;
}

.tour-info-box h6{
  font-weight:900;
  margin:0;
  color:var(--navy);
}

.tour-info-box p{
  margin:5px 0 0;
  font-size:13px;
}

.day-card{
  background:#fff;
  border-radius:30px;
  padding:34px;
  height:100%;
  box-shadow:0 20px 65px rgba(7,27,43,.10);
  border:1px solid rgba(214,165,74,.20);
}

.day-card.dark{
  background:linear-gradient(145deg,var(--navy),var(--navy2));
  color:#fff;
}

.day-card h3{
  color:var(--navy);
  font-weight:900;
  margin-bottom:24px;
}

.day-card.dark h3{
  color:#fff;
}

.day-badge-large{
  display:inline-block;
  padding:9px 18px;
  border-radius:50px;
  background:linear-gradient(135deg,var(--teal),var(--gold));
  color:var(--navy);
  font-weight:900;
  margin-bottom:18px;
}

.timeline-list{
  list-style:none;
  padding:0;
  margin:0;
}

.timeline-list li{
  position:relative;
  padding-left:34px;
  padding-bottom:18px;
  border-left:2px dashed rgba(214,165,74,.45);
  margin-left:10px;
}

.timeline-list li:last-child{
  border-left:0;
  padding-bottom:0;
}

.timeline-list li:before{
  content:"";
  position:absolute;
  left:-9px;
  top:2px;
  width:16px;
  height:16px;
  border-radius:50%;
  background:var(--gold);
  border:3px solid #fff;
  box-shadow:0 0 0 4px rgba(214,165,74,.25);
}

.timeline-list strong{
  display:block;
  color:var(--gold);
  margin-bottom:4px;
}

.accordion-item{
  border:0;
  border-radius:24px!important;
  overflow:hidden;
  margin-bottom:18px;
  box-shadow:0 18px 55px rgba(7,27,43,.09);
}

.accordion-button{
  padding:22px 26px;
  font-weight:900;
  color:var(--navy);
  background:#fff;
}

.accordion-button:not(.collapsed){
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
}

.accordion-body{
  padding:30px;
  background:#fff;
}

.tour-detail-layout{
  display:grid;
  grid-template-columns:1.8fr .9fr;
  gap:30px;
  align-items:start;
}

.tour-detail-image img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 18px 50px rgba(7,27,43,.18);
  border:4px solid rgba(214,165,74,.20);
  position:sticky;
  top:110px;
}

.tour-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0;
}

.tour-meta span{
  background:#eefafa;
  color:var(--navy);
  padding:7px 13px;
  border-radius:50px;
  font-size:12px;
  font-weight:800;
}

.tour-list{
  padding-left:0;
  list-style:none;
}

.tour-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:10px;
}

.tour-list li:before{
  content:"\F26A";
  font-family:"bootstrap-icons";
  position:absolute;
  left:0;
  color:var(--gold);
}

.contact-tour-box{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  padding:45px;
  border-radius:34px;
  box-shadow:0 25px 80px rgba(7,27,43,.20);
}

.contact-tour-box h3{
  color:var(--gold);
  font-weight:900;
}

.contact-tour-box a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

/* =========================
   VISA
========================= */
.visa-inner-banner{
  padding:130px 0 90px;
  background:linear-gradient(90deg,rgba(7,27,43,.94),rgba(7,27,43,.72),rgba(7,27,43,.25)),url("2.png") center/cover no-repeat;
  color:#fff;
}

.visa-section{
  padding:90px 0;
  background:linear-gradient(135deg,#fff8ea,#eefafa);
}

.visa-card{
  background:#fff;
  border-radius:30px;
  padding:35px;
  height:100%;
  box-shadow:0 25px 75px rgba(7,27,43,.10);
  border:1px solid rgba(214,165,74,.20);
  transition:.35s;
}

.visa-card:hover{
  transform:translateY(-8px);
}

.visa-card.dark{
  background:linear-gradient(145deg,var(--navy),var(--navy2));
  color:#fff;
}

.visa-card h3{
  color:var(--navy);
  font-weight:900;
  margin-bottom:20px;
}

.visa-card.dark h3{
  color:#fff;
}

.visa-icon{
  width:68px;
  height:68px;
  border-radius:22px;
  background:linear-gradient(135deg,var(--teal),var(--gold));
  color:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin-bottom:20px;
}

.visa-list{
  padding-left:0;
  list-style:none;
  margin-bottom:0;
}

.visa-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:12px;
  line-height:1.7;
}

.visa-list li:before{
  content:"\F26A";
  font-family:"bootstrap-icons";
  position:absolute;
  left:0;
  top:1px;
  color:var(--gold);
}

.details-table{
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 25px 75px rgba(7,27,43,.10);
}

.details-table table{
  margin:0;
}

.details-table th{
  background:var(--navy);
  color:#fff;
  width:35%;
  padding:16px;
}

.details-table td{
  padding:16px;
  font-weight:600;
}

.note-box{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  border-radius:30px;
  padding:35px;
  box-shadow:0 25px 75px rgba(7,27,43,.18);
}

.note-box h3{
  color:var(--gold);
  font-weight:900;
}

.visa-btn{
  background:linear-gradient(135deg,var(--gold),#F3D179);
  color:var(--navy);
  border-radius:50px;
  padding:12px 28px;
  font-weight:900;
  text-decoration:none;
  display:inline-block;
  margin:6px;
}

.visa-btn:hover{
  color:var(--navy);
  transform:translateY(-3px);
}

/* =========================
   MAP / CTA / FOOTER
========================= */
.map-section{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  padding:90px 0;
  color:#fff;
}

.map-box{
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 25px 80px rgba(0,0,0,.30);
  border:4px solid rgba(255,255,255,.18);
}

.map-box iframe{
  width:100%;
  height:420px;
  border:0;
}

.register-now-section{
  padding:90px 0;
  background:
    radial-gradient(circle at 80% 20%,rgba(214,165,74,.18),transparent 30%),
    linear-gradient(135deg,var(--navy),#03101c);
}

.register-box{
  padding:70px;
  border-radius:34px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(18px);
  text-align:center;
  color:#fff;
}

.register-box h2{
  font-family:"Cormorant Garamond",serif;
  font-size:52px;
  font-weight:700;
}

.register-box h2 span{
  color:var(--gold);
}

.contact-strip{
  background:linear-gradient(135deg,var(--gold),#F3D179);
  color:var(--navy);
  padding: 17px;
  border-radius:28px;
  box-shadow:0 25px 70px rgba(7,27,43,.14);
}

.contact-strip h3{
  font-weight:900;
}

.footer{
  background:
    radial-gradient(circle at 80% 10%,rgba(214,165,74,.18),transparent 30%),
    linear-gradient(135deg,var(--navy),#03101c);
  color:#dff;
  padding:65px 0 22px;
}

.footer h5{
  color:var(--gold);
  font-weight:900;
}

.footer-bottom{
  margin-top:35px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.15);
}

.back-top,
.whatsapp-btn{
  position:fixed;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  z-index:1000;
  text-decoration:none;
}

.whatsapp-btn{
  bottom:85px;
  background:#25D366;
}

.back-top{
  bottom:25px;
  background:var(--gold);
  color:var(--navy);
}

.mobile-register{
  display:none;
}

.float-soft{
  animation:floatSoft 5s ease-in-out infinite;
}

@keyframes floatSoft{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

/* =========================
   RESPONSIVE FINAL
========================= */
@media(max-width:991px){
  .page-title{
    font-size:48px;
  }

  .inner-banner,
  .venue-inner-banner,
  .contact-inner-banner,
  .tour-inner-banner,
  .visa-inner-banner{
    padding:100px 0 70px;
  }

  .inner-title{
    font-size:46px;
  }

  .tour-info-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .tour-detail-layout{
    grid-template-columns:1fr;
  }

  .tour-detail-image img{
    position:static;
    height:240px;
  }

  .mobile-register{
    display:block;
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    z-index:999;
    background:var(--gold);
    color:var(--navy);
    text-align:center;
    padding:13px;
    font-weight:900;
    text-decoration:none;
  }
}

@media(max-width:575px){
  p,
  li{
    font-size:14px;
  }

  .section-padding,
  .venue-page-section,
  .venue-gallery,
  .contact-section,
  .quick-contact,
  .tour-page-section,
  .visa-section,
  .map-section,
  .register-now-section{
    padding:60px 0;
  }

  .section-title{
    font-size:38px;
  }

  .inner-title{
    font-size:38px;
  }

  .page-title{
    font-size:38px;
  }

  .register-box{
    padding: 35px 2px;
  }

  .register-box h2{
    font-size: 47px;
  }

  .feature-card{
    text-align:center;
  }

  .venue-main-img{
    min-height:280px;
  }

  .form-card{
    padding:25px;
  }

  .tour-info-grid{
    grid-template-columns:1fr;
  }

  .tour-img{
    height:280px;
  }

  .details-table th,
  .details-table td{
    display:block;
    width:100%;
  }
}



.content-slider{
  position:relative;
  width:100%;
  max-width: 748px;
  height:500px;
  overflow:hidden;
}

.content-item{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(40px);
  transition:opacity .7s ease, transform .7s ease, visibility .7s ease;
}

.content-item.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}

.content-item:not(.active){
  display:none;
}

.hero-buttons{
  margin-top:26px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

@media(max-width:991px){
  .content-slider{
    height:420px;
  }
}

@media(max-width:575px){
  .content-slider{
    height: 437px;
  }

  .hero-buttons{
    gap:8px;
  }
  
  .hero-buttons {
    margin-top: 1px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .hero-content
  {
    
padding: 0px 15px 0;
  }
  
}

.icon-circle{
    width:85px;
    height:85px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;

    background:linear-gradient(135deg,#0b2d45,#0f4668);
    border:2px solid rgba(214,165,74,.35);

    box-shadow:
    0 10px 30px rgba(0,0,0,.15),
    0 0 20px rgba(0,217,255,.15);
}

.icon-circle i{
    font-size:38px;
    color:#d6a54a;
    transition:.4s;
}

.lux-card:hover .icon-circle{
    transform:translateY(-5px);
}

.lux-card:hover .icon-circle i{
    transform:scale(1.15);
    color:#00d9ff;
}

.btn-register{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:14px 38px;
    border-radius:60px;

    background:linear-gradient(135deg,var(--gold),#f3d179);
    color:var(--navy);

    font-size:16px;
    font-weight:800;
    text-decoration:none;

    box-shadow:
    0 12px 30px rgba(214,165,74,.35);

    transition:.4s ease;
}

.btn-register:hover{
    transform:translateY(-4px);
    color:var(--navy);

    box-shadow:
    0 18px 40px rgba(214,165,74,.45);
}

.btn-register i{
    font-size:18px;
}


.abstract-card{
    padding:50px;
}

.text-gold{
    color:var(--gold);
}

.abstract-item{
    display:flex;
    gap:18px;
    margin-bottom:28px;
    /* align-items:flex-start; */
}

.abstract-item i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(214,165,74,.12);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.abstract-item h5{
    color:#fff;
    font-weight:700;
    margin-bottom:5px;
}

.abstract-item p{
    color:rgba(255,255,255,.75);
    margin:0;
}

.deadline-box{
    background:linear-gradient(135deg,#0b2d45,#103d5c);
    border:1px solid rgba(214,165,74,.25);
    border-radius:25px;
    padding:35px;
    text-align:center;
    height:100%;
}

.deadline-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    margin:auto;
    margin-bottom:20px;
    background:linear-gradient(135deg,var(--gold),#f3d179);
    color:var(--navy);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.deadline-box h4{
    color:#fff;
}

.deadline-box h2{
    color:var(--gold);
    font-weight:800;
}

.deadline-box p{
    color:#fff;
}

.contact-info{
    text-align:left;
    margin-top:20px;
}

.contact-info p{
    margin-bottom:12px;
    font-size:15px;
}

.contact-info i{
    color:var(--gold);
    margin-right:8px;
}

@media(max-width:767px){

    .abstract-card{
        padding:25px;
    }

}

.btn-abstract-submit{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 38px;
    border-radius:60px;

    background:linear-gradient(135deg,var(--gold),#f3d179);
    color:var(--navy);

    font-size:16px;
    font-weight:800;
    text-decoration:none;

    box-shadow:
    0 15px 35px rgba(214,165,74,.35);

    transition:.4s ease;
}

.btn-abstract-submit:hover{
    transform:translateY(-4px);
    color:var(--navy);

    box-shadow:
    0 20px 45px rgba(214,165,74,.45);
}

.btn-abstract-submit i{
    font-size:18px;
}

.association-carousel{
    margin-top:35px;
}

.association-carousel .item{
    padding:15px 8px 25px;
}

.association-carousel .profile-card{
    min-height:280px;
}

.association-carousel .owl-nav{
    margin-top:25px;
    text-align:center;
}

.association-carousel .owl-nav button{
    width:46px;
    height:46px;
    border-radius:50%!important;
    background:linear-gradient(135deg,var(--gold),#f3d179)!important;
    color:var(--navy)!important;
    font-size:28px!important;
    margin:0 6px;
    box-shadow:0 12px 30px rgba(214,165,74,.30);
}

.association-carousel .owl-dots{
    margin-top:10px;
}

.association-carousel .owl-dot span{
    background:#b7c4c7!important;
}

.association-carousel .owl-dot.active span{
    background:var(--gold)!important;
}


/* ASSOCIATION CAROUSEL FINAL FIX */

.association-carousel{
  margin-top:35px;
  padding:0 10px;
}

.association-carousel .owl-stage-outer{
  padding:15px 0 35px;
}

.association-carousel .item{
  padding:10px 12px;
}

.association-carousel .profile-card{
  min-height:290px;
  padding:34px 18px 28px;
  border-radius:26px;
  background:#fff;
  box-shadow:0 18px 45px rgba(7,27,43,.10);
}

.association-carousel .profile-img{
  /* width:150px; */
  /* height:150px; */
  border-radius:50%;
  object-fit:cover;
  object-position:top center;
  display:block;
  margin:0 auto 20px;
  padding:5px;
  background:linear-gradient(135deg,var(--teal),var(--gold));
}

.association-carousel .profile-card h5{
  font-size:20px;
  line-height:1.3;
  font-weight:900;
  color:var(--navy);
  margin:0;
}

.association-carousel .owl-nav{
  margin-top:5px;
  text-align:center;
}

.association-carousel .owl-nav button{
  width:48px;
  height:48px;
  border-radius:50%!important;
  background:linear-gradient(135deg,var(--gold),#f3d179)!important;
  color:var(--navy)!important;
  font-size:24px!important;
  margin:0 6px;
}

.association-carousel .owl-dots{
  margin-top:10px;
}

.association-carousel .owl-dot span{
  width:10px!important;
  height:10px!important;
  background:#bfd1d1!important;
}

.association-carousel .owl-dot.active span{
  background:var(--gold)!important;
}

@media(max-width:575px){
  .association-carousel .profile-card{
    min-height:270px;
  }

  .association-carousel .profile-img{
    width:135px;
    height:135px;
  }
}


.owl-dots
{
  display: none !important;
}


/* PRELOADER FINAL RESPONSIVE */
#preloader{
  position:fixed;
  inset:0;
  z-index:999999;
  width:100%;
  height:100dvh;
  overflow:hidden;

  background-color:#061426;
  background-image:url("pre.jpg");
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* Mobile par poori image dikhane ke liye */
@media(max-width:767px){
  #preloader{
    background-size:contain;
    background-position:center center;
    background-color:#061426;
  }
}

/* Progress bar */
.loader-content{
  position:absolute;
  left:50%;
  bottom:7%;
  transform:translateX(-50%);
  z-index:10;
  width:min(85vw,380px);
}

.progress-wrap{
  width:100%;
  height:18px;
  border-radius:50px;
  background:#111;
  border:2px solid #fff;
  overflow:hidden;
}

.progress-bar-custom{
  width:0;
  height:100%;
  border-radius:50px;
  background:linear-gradient(90deg,#fff,var(--gold));
  animation:loaderProgress 2.5s ease forwards;
}

@keyframes loaderProgress{
  from{width:0}
  to{width:100%}
}


/* REGISTRATION TABLE MOBILE RESPONSIVE */


.table-responsive table{
    min-width:700px;
    margin-bottom:0;
}

.table thead th{
    white-space:nowrap;
    font-size:15px;
    font-weight:700;
}

.table tbody td{
    white-space:nowrap;
    font-size:15px;
    vertical-align:middle;
}

@media(max-width:767px){
  
  
.table-responsive{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    border-radius:24px;
}

    #registration .lux-card{
        padding:20px 15px;
    }

    .table-responsive{
        border-radius:18px;
    }

    .table-responsive table{
        min-width:650px;
    }

    .table thead th{
        font-size:13px;
        padding:12px 10px;
    }

    .table tbody td{
        font-size:13px;
        padding:12px 10px;
    }

    #registration p{
        font-size:13px;
        line-height:1.6;
        text-align:center;
    }

    .btn-register{
        width:100%;
        max-width:280px;
        justify-content:center;
    }
}


.program-coming-card{
    max-width:900px;
    margin:auto;
    text-align:center;
    background:#fff;
    padding:60px 45px;
    border-radius:32px;
    border:1px solid rgba(214,165,74,.20);
    box-shadow:0 25px 70px rgba(7,27,43,.08);
}

.program-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--teal),var(--gold));
    color:#fff;
    font-size:38px;
}

.program-coming-card h2{
    font-family:"Cormorant Garamond",serif;
    font-size:46px;
    color:var(--navy);
    margin-bottom:8px;
}

.program-coming-card h3{
    color:var(--gold);
    font-weight:700;
    margin-bottom:20px;
}

.program-coming-card p{
    max-width:700px;
    margin:auto;
    color:#555;
    line-height:1.9;
}

.coming-tags{
    margin-top:35px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.coming-tags span{
    padding:12px 22px;
    border-radius:50px;
    background:#f7f9fb;
    border:1px solid rgba(214,165,74,.25);
    color:var(--navy);
    font-weight:600;
}

.coming-tags i{
    color:var(--gold);
    margin-right:8px;
}

@media(max-width:767px){

    .program-coming-card{
        padding:35px 22px;
    }

    .program-coming-card h2{
        font-size:34px;
    }

    .coming-tags{
        gap:10px;
    }

    .coming-tags span{
        width:100%;
    }

}
  