
:root {
    --primary: #192a5c;
    --primary-dark: #15189a;
    --secondary: #8a6d5a;
    --light: #f7f7f4;
    --white: #ffffff;
    --text: #2b2b2b;
    --border: #ececec;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

body{
  font-family: 'Poppins', sans-serif;
  background:var(--light);
  color:var(--text);
  overflow-x:hidden;
}

section{
  padding:90px 0;
}

img{
  width:100%;
}

.light-bg{
  background: url('../images/bg-pattern.png') no-repeat center;
  background-size:cover;
}

.section-title{
  font-size:44px;
  font-family: 'Poppins', sans-serif;
  color:var(--primary);
  margin-bottom:20px;
}

.section-text{
  color:#666;
  line-height:1.9;
  margin-bottom:18px;
}

.navbar{
  background:rgba(255,255,255,0.94)!important;
  backdrop-filter:blur(15px);
  padding:14px 0;
  box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.navbar-brand{
  font-size:28px;
  font-weight:700;
  color:var(--primary)!important;
}

.nav-link{
  color:#444!important;
  margin-left:10px;
  font-weight:600;
}

.nav-link:hover{
  color:var(--primary)!important;
}
.hero-section{
    padding: 80px 0 0;
    background: #fff;
    overflow: hidden;
}

.hero-carousel{
    width: 100%;
}

.hero-slide{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.hero-slide img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Owl dots */

.hero-carousel .owl-dots {
    margin-top: 15px;
    position: absolute;
    bottom: 10px;
    display: flex;
    left: 48%;
    gap: 10px;
}

.hero-carousel .owl-dot span{
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background: #170202 !important;
}

.hero-carousel .owl-dot.active span{
    background: var(--primary) !important;
}

.divider{
  width:1px;
  height:50px;
  background:#ccc;
}

.hero-btns{
  display:flex;
  gap:20px;
}
.logo{
    max-width:200px;
}
.about-img {
    max-width: 48%;
    background: #eaeaea;
}

.primary-btn {
    background: var(--primary);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
    border: none;
}

.primary-btn:hover{
  background:var(--primary-dark);
  transform:translateY(-4px);
}

.secondary-btn{
  border:1px solid var(--primary);
  padding:14px 34px;
  border-radius:50px;
  text-decoration:none;
  color:var(--primary-dark);
  font-weight:600;
}
.countdown-section{
    padding-bottom: 0;
}
.countdown-box{
  background:#fff;
  padding:35px;
  border-radius:24px;
  text-align:center;
  box-shadow:var(--shadow);
}

.countdown-box h2{
  font-size:52px;
  color:var(--primary);
}

.committee-card{
  background:#fff;
  padding:30px;
  border-radius:24px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:.4s;
}

.committee-card:hover{
  transform:translateY(-10px);
}

.committee-card img{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:20px;
}

.committee-card h4{
  color:var(--primary);
  font-size: 23px;
}

.info-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.info-card h4{
  padding:20px;
  text-align:center;
  color:var(--primary);
}

.highlight-box{
  background:#fff;
  border-radius:20px;
  padding:35px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:.4s;
}

.highlight-box:hover{
  transform:translateY(-8px);
}

.highlight-box i{
  font-size:42px;
  color:var(--primary);
  margin-bottom:20px;
}

.download-card{
  background:#657b52;
  padding:50px 30px;
  border-radius:30px;
  text-align:center;
  color:#fff;
}
.download-card h4{
    margin-bottom: 20px;
}

.download-card.yellow{
  background:#657b52;
}

.download-icon{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto auto 25px;
}

.download-icon i{
  font-size:38px;
  color:var(--primary);
}

footer{
  background:var(--primary);
  color:#fff;
  padding:80px 0 30px;
}

footer h4{
  margin-bottom:20px;
}

footer p{
  color:rgba(255,255,255,0.7);
}

.reveal{
  opacity:0;
  transform:translateY(80px);
  transition:1s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:992px){

.hero-content h1{
  font-size:60px;
}

.hero-subtitle{
  font-size:22px;
}

.section-title{
  font-size:34px;
}

}

.attractions-carousel{
    position: relative;
}

.attractions-carousel .item{
    padding: 20px 10px;
}

.attractions-carousel .info-card{
    transform: scale(.88);
    transition: all .4s ease;
}

.attractions-carousel .center .info-card{
    transform: scale(1);
}

.attractions-carousel .info-card img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.attractions-carousel .info-card h4{
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Owl dots */

.attractions-carousel .owl-dots{
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.attractions-carousel .owl-dot span{
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background: #170202 !important;
}

.attractions-carousel .owl-dot.active span{
    background: var(--primary) !important;
}

@media(max-width:768px){

    .attractions-carousel .info-card{
        transform: scale(1);
    }

    .attractions-carousel .center .info-card{
        transform: scale(1);
    }

    .attractions-carousel .info-card img{
        height: 220px;
    }

}

.registration-section{
    padding:130px 0;
}

.registration-subtitle{
    color:#777;
    margin-top:-10px;
}

.table-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
    margin-bottom:40px;
}

.registration-table{
    margin-bottom:0;
}

.registration-table thead th{
    background:var(--primary);
    color:#fff;
    text-align:center;
    padding:18px;
    font-weight:600;
    border:none;
}

.registration-table tbody td{
    text-align:center;
    padding:18px;
    vertical-align:middle;
}

.registration-table tbody tr:nth-child(even){
    background:#f8f8f8;
}

.package-tag{
    color:#c2547a;
    font-style:italic;
    font-size:14px;
}

.accommodation-title{
    font-size:38px;
    color:var(--primary);
    font-weight:700;
}

.accommodation-note{
    font-size:28px;
    color:#17a589;
    font-weight:600;
    margin-bottom:5px;
}

.checkin-text{
    color:#666;
}

.info-box{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:var(--shadow);
    margin-top:30px;
}

.info-box h4{
    color:var(--primary);
    margin-bottom:20px;
}

.info-box ul{
    padding-left:20px;
}

.info-box li{
    margin-bottom:10px;
}

.small-heading{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:12px 30px;
    border-radius:10px;
    margin-bottom:25px;
}

.policy-box{
    margin-top:50px;
    background:#eef5ea;
    border-left:6px solid var(--primary);
    padding:40px;
    border-radius:20px;
}

.policy-box h3{
    color:var(--primary);
    margin-bottom:20px;
}

.policy-box ul{
    margin:0;
    padding-left:20px;
}

.policy-box li{
    margin-bottom:10px;
}

@media(max-width:768px){

    .accommodation-title{
        font-size:28px;
    }

    .accommodation-note{
        font-size:20px;
    }

    .registration-table{
        min-width:700px;
    }

}


.img-box img{
    width:100px;
    height:100px;
    border-radius:50%;
    margin:auto;
    display:flex;
    justify-content:center;
    margin-bottom:10px;
}

.fee-option {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px 20px;
    background: #fff;
    transition: 0.3s;
}

    .fee-option:hover {
        border-color: #0d6efd;
        box-shadow: 0 5px 15px rgba(0,0,0,.08);
    }

    .fee-option label {
        width: 100%;
        margin: 0;
        cursor: pointer;
        font-weight: 500;
    }

.form-control {
    min-height: 48px;
    border-radius: 10px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

hr {
    opacity: .1;
}

.registration-cta {
    padding: 80px 0;
    background: #f8fbff;
}

.cta-box {
    text-align: center;
    padding: 60px 30px;
    border-radius: 24px;
    background-image: url('../images/bg-pattern.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--primary);
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

    .cta-box h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .cta-box p {
        max-width: 800px;
        margin: auto;
        opacity: .95;
        font-size: 18px;
    }

.cta-btn-group {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .cta-btn-group a {
        min-width: 220px;
    }

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 50px;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

    .secondary-btn:hover {
        transform: translateY(-4px);
    }

@media(max-width:768px) {

    .cta-box {
        padding: 40px 20px;
    }

        .cta-box h2 {
            font-size: 28px;
        }

        .cta-box p {
            font-size: 15px;
        }
}

/* Registration Popup */

#registrationModal .modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

#registrationModal .modal-header {
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: #fff;
    border: none;
    padding: 18px 30px;
}
.modal-dialog {
    transform: none;
    max-width: 575px;
}
#registrationModal .modal-title {
    font-size: 24px;
    font-weight: 700;
}

#registrationModal .btn-close {
    filter: brightness(0) saturate(100%) invert(98%) sepia(21%) saturate(253%) hue-rotate(249deg) brightness(119%) contrast(100%);
}

#registrationModal .modal-body {
    padding: 40px 35px;
}

.popup-icon {
    width: 90px;
    height: 90px;
    background: rgba(93,125,77,.12);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

    .popup-icon i {
        font-size: 40px;
    }

.popup-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.popup-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.popup-btn {
    background: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 14px 20px;
    font-weight: 600;
}

    .popup-btn:hover {
        background: var(--primary-dark);
    }

.popup-btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 14px 20px;
    font-weight: 600;
}

    .popup-btn-outline:hover {
        background: var(--primary);
        color: #fff;
    }

.footer-logo {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(343deg) brightness(102%) contrast(101%);
    margin-bottom: 25px;
    max-width:250px;
}

.page-banner {
    background: linear-gradient(135deg,#005b96,#0077b6);
    color: #fff;
    padding: 140px 0 70px;
}

    .page-banner h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 10px;
    }

.privacy-section {
    background: #f8f9fa;
}

.privacy-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .privacy-card h2 {
        color: #005b96;
        font-size: 28px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .privacy-card p,
    .privacy-card li {
        line-height: 1.9;
        color: #555;
    }

    .privacy-card ul {
        padding-left: 20px;
    }

.contact-box {
    background: #f5f9fc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #005b96;
}

@media(max-width:768px) {

    .page-banner {
        padding: 120px 0 50px;
    }

        .page-banner h1 {
            font-size: 34px;
        }

    .privacy-card {
        padding: 25px;
    }

        .privacy-card h2 {
            font-size: 24px;
        }
}

.policy-page {
    padding-top: 120px;
    padding-bottom: 80px;
}

.policy-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

    .policy-card h2 {
        margin-bottom: 20px;
        color: var(--primary-dark);
    }

    .policy-card h3 {
        margin-top: 30px;
        margin-bottom: 15px;
        color: var(--primary);
    }

    .policy-card p,
    .policy-card li {
        line-height: 1.9;
        color: #555;
    }

    .policy-card ul {
        padding-left: 20px;
    }

    footer a{
        font-weight:600;
        color:#fff !important;
    }
.col-lg-3 .committee-card{
    height:300px;
}

.navbar .dropdown-menu {
    border: 0;
    border-radius: 14px;
    padding: 10px 0;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
    min-width: 260px;
    margin-top: 10px;
}

.navbar .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: #444;
    transition: .3s;
}

    .navbar .dropdown-item:hover {
        background: #f4f8f2;
        color: var(--primary);
    }

.navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
}