@charset "utf-8";

body {
    font-family: 'Poppins', sans-serif;
    background: #0b0f2f;
    color: #fff;
}

/* NAVBAR */
/* TOPBAR */
.topbar {
    background: linear-gradient(90deg,#1a237e,#3949ab);
    color: #fff;
    text-align: center;
    font-size: 13px;
    padding: 6px 0;
    letter-spacing: 0.5px;
}

/* NAVBAR */
.navbar {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    padding: 12px 0;
    transition: 0.3s;
}

/* BRAND */
.brand-logo {
    height: 55px;
}

.brand-text {
    line-height: 1.2;
}

.brand-title {
    font-weight: 700;
    font-size: 18px;
    color: #1a237e;
}

.brand-sub {
    font-size: 12px;
    color: #777;
}

/* NAV LINKS */
.navbar .nav-link {
    color: #222 !important;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    transition: 0.3s;
}

/* underline animation */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,#ff9800,#ff6f00);
    transition: 0.3s;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 10px;
}

.dropdown-item:hover {
  background: #0d6efd;
  color: #fff;
  border-radius: 6px;
}
.navbar .dropdown-toggle {
  display: inline-flex;
  align-items: center;
}

.navbar .dropdown-toggle::after {
  margin-left: 6px;
  position: relative;
  top: 1px;
}
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
/* REGISTER BUTTON */
.btn-register {
    background: linear-gradient(45deg,#ff6f00,#ff9800);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(255,152,0,0.3);
    transition: 0.3s;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,152,0,0.4);
}

/* SCROLL EFFECT */
.navbar.scrolled {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* BOTTOM BORDER LINE */
.navbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,#ff9800,#1a237e);
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg,#0b0f2f,#1a237e);
}

/* digital grid */
.hero::before {
    content:"";
    position:absolute;
    width:200%;
    height:200%;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size:50px 50px;
    animation:moveGrid 20s linear infinite;
}
.time-box span {
    transition: all 0.3s ease;
}

.btn-read {
    background: linear-gradient(45deg,#ff6f00,#ff9800);
    color: #fff;
    border-radius: 25px;
    padding: 8px 20px;
    border: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-read:hover {
    transform: translateY(-2px);
}
@keyframes moveGrid {
    from {transform:translate(0,0);}
    to {transform:translate(-50px,-50px);}
}

/* glow */
.hero::after {
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,rgba(255,152,0,0.25),transparent);
    top:-100px;
    right:-100px;
}

/* overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.75) 40%,
        rgba(255,255,255,0.2) 70%,
        transparent 100%
    );
}

/* hero content */
.hero-content {
    position:relative;
    z-index:2;
}

/* image grid */
.image-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

.grid-item {
    overflow:hidden;
    border-radius:12px;
    transform:rotateY(10deg);
    transition:0.5s;
}

.grid-item img {
    width:100%;
    height:110px;
    object-fit:cover;
}

.grid-item:hover {
    transform:rotateY(0deg) scale(1.1);
}

/* sections */
.section {
    padding:80px 0;
}

/* glass */
.glass {
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    border-radius:15px;
    padding:20px;
}

/* button */
.btn-primary {
    background:linear-gradient(45deg,#ff6f00,#ff9800);
    border:none;
}

/* footer */
footer {
    background:#05071c;
    padding:40px;
}
/* background zoom animation */
.carousel-bg {
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    animation: zoomEffect 10s ease-in-out infinite;
    transform: scale(1);
}

@keyframes zoomEffect {
    0% {transform: scale(1);}
    100% {transform: scale(1.1);}
}

/* overlay */
.overlay {
    position:absolute;
    width:100%;
    height:100%;
   /* background: linear-gradient(90deg, rgba(0,0,0,0.75), rgba(0,0,0,0.2));*/
}

/* hero text animation */
.hero-text {
    /*background: rgba(255, 255, 255, 0.85);*/
    /*<!--backdrop-filter: blur(12px);-->*/
    padding: 25px;
    border-radius: 15px;
    /*box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
}

.carousel-item.active .hero-text {
    animation-delay:0.5s;
}

.hero-title {
    font-size:30px;
    font-weight:700;
    color: #1a237e; text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-sub {
    font-size:20px;
    margin-top:10px;color: #444;
}

.hero-meta {
    margin:15px 0;
}

.hero-btn {
    margin-top:10px;
}
.carousel-item {
    height: 100vh; /* FULL SCREEN */
    position: relative;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	filter: brightness(0.85);
}
.countdown-section {
    background: #f5f7fb;
    color: #111;
    padding: 10px 0;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* ROUND BADGES */
.time-box {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: #e0e0e0;
    box-shadow: 
        10px 10px 20px #babecc,
        -10px -10px 20px #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* TEXT */
.time-box span {
    font-size: 32px;
    z-index: 2;
}

.time-box small {
    font-size: 12px;
    z-index: 2;
}

/* COLORS */
.blue {
    background: linear-gradient(135deg, #3f51b5, #5c6bc0);
    color: #fff;
}

.orange {
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    color: #fff;
}
.welcome-section {
    position: relative;
    padding: 10px 0;
    text-align: center ; background:url(images/welcomebg.jpg);
    background-size: cover;
    background-position: center;
}
.welcome-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5,10,40,0.65),
        rgba(5,10,40,0.35)
    );
}
.welcome-text { text-align:justify;
}

.welcome-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px; text-align:center;
}

.welcome-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #ddd;
    margin-bottom: 15px;
}
.welcome-text .highlight-line {
    display: inline-block;
    background: rgba(255,152,0,0.1);
    padding: 10px 18px;
    border-left: 4px solid #ff9800;
    margin: 20px 0;
    font-weight: 500;
    color: #ff9800;
}
.welcome-text {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.welcome-text h2 {
    color: #fff;
    letter-spacing: 1px;
}

.welcome-text strong {
    color: #ff9800;
}
.welcome-text .btn {
    margin-top: 20px;
}

/* title */
.welcome-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff9800;
}

/* text */
.welcome-text {
    font-size: 15px;
    line-height: 1.8;
    color: #ddd;
}

/* quote */
.welcome-quote {
    margin-top: 20px;
    font-style: italic;
    color: #ff9800;
    border-left: 3px solid #ff9800;
    padding-left: 15px;
}

/* right image */
.welcome-card {
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* person cards */
.person-card {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 15px;
    transition: 0.3s;
}

.person-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.person-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.workshop-badge {
    display: inline-block;
    background: linear-gradient(45deg,#ff6f00,#ff9800);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin: 5px 5px 5px 0;
    font-weight: 500;
}
.workshop-badge {
    display: inline-block;
    background: linear-gradient(45deg,#ff6f00,#ff9800);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin: 5px 5px 5px 0;
    font-weight: 500;
}
.committee-section {
    padding: 80px 0;
    background: #f8f9fc;
}

/* title */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
}

/* card */
.committee-card {
    background: #fff;
    padding: 20px 15px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* blue corner border effect */
.committee-card::before {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 3px solid #4a90e2;
    z-index: 0;
}

/* image */
.committee-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

/* name */
.committee-card h6 {
    font-weight: 700;
    margin: 5px 0;
    color: #1a237e;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* role */
.committee-card p {
    font-size: 12px;
    color: #555;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* hover */
.committee-card:hover {
    transform: translateY(-8px);
}
/* FOOTER BG */
.footer {
    background: linear-gradient(135deg, #ff6f00, #1a237e);
    color: #fff;
    padding: 60px 0 0;
    position: relative;
}

/* LOGO */
.footer-logo {
    max-width: 180px;
}

/* TEXT */
.footer-text {
    font-size: 14px;
    color: #eee;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #eee;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffcc80;
}

/* SOCIAL */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
}

/* TRAVEXEL */
.travexel-logo {
    max-width: 150px;
}

/* QR */
.qr-box img {
    width: 100px;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
}

.qr-box p {
    font-size: 12px;
    margin-top: 5px;
}

/* BOTTOM */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 15px 0;
    margin-top: 40px;
}

.footer-policy a {
    margin-left: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.footer-policy a:hover {
    text-decoration: underline;
}
.registration-section {
    padding: 90px 0;
    background: linear-gradient(180deg,#f5f7fb,#ffffff);
}

/* TITLE */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a237e;
}

.section-sub {
    color: #666;
}

.theme-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    border-radius: 30px;
    background: linear-gradient(45deg,#ff9800,#ff6f00);
    color: #fff;
    font-size: 14px;
}

/* DATE CARD */
.date-card {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* CTA */
.btn-register-big {
    background: linear-gradient(45deg,#ff6f00,#ff9800);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(255,152,0,0.3);
}

/* TABLE WRAPPER */
.table-wrapper {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* TABLE */
.reg-table th {
    background: #1a237e;
    color: #fff;
}

.reg-table td {
    background: #fff;
}

/* HIGHLIGHT EARLY BIRD */
.highlight-col {
    background: #fff3e0 !important;
    font-weight: 600;
    border: 2px solid #ff9800;
}

/* FREE ROW */
.free-row td {
    background: #e8f5e9 !important;
    font-weight: bold;
    color: #2e7d32;
}

/* PAYMENT */
.payment-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.qr-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.qr-card img {
    max-width: 180px;
}
.highlight-col {
    background: #fff3e0 !important;
    color: #000 !important; /* 🔥 FIX */
    font-weight: 600;
    border: 2px solid #ff9800;
}
reg-table th.highlight-col {
    color: #000 !important;
}
/* fade animation */
@keyframes fadeUp {
    to {
        opacity:1;
        transform: translateY(0);
    }
	.tourism-section {
    padding: 80px 0;
    background: #f5f7fb;
}
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
}

.section-sub {
    color: #666;
}

.tour-heading {
    font-weight: 600;
    margin-bottom: 20px;
    color: #ff6f00;
}

/* CARD */
.tour-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: center;
}

.tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tour-card h6 {
    margin-top: 10px;
    font-weight: 600;
    color: #1a237e;
}

.tour-card p {
    font-size: 13px;
    color: #666;
    padding: 0 10px 15px;
}

.tour-card:hover {
    transform: translateY(-8px);
}

.welcome-committee-section {
    position: relative;
    padding: 20px 0;
    background: url('../images/welcomebg.jpg') center/cover no-repeat;
}

/* overlay */
.welcome-committee-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(5,10,40,0.6),
        rgba(5,10,40,0.4)
    );
}

.welcome-committee-section .container {
    position: relative;
    z-index: 2;
}

/* divider */
.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg,#ff9800,#ff6f00);
    margin: 40px auto;
    border-radius: 5px;
}

/* title */
.committee-title {
    color: #fff;
    font-weight: 700;
}

/* improve card for dark bg */
.committee-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    transition: 0.3s;
}

.committee-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.15);
}

.committee-card h6 {
    color: #fff;
}

.committee-card p {
    color: #ccc;
}
/* MOBILE HERO DESIGN */
/* LIGHT MOBILE HERO */


/* Countdown */
.countdown-box div {
    background: #ffffff;
    border: 1px solid #e0e6ed;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 10px;
    border-radius: 10px;
    min-width: 60px;
}

.countdown-box span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b1c3d;
}

/* Buttons */
.mobile-cta .btn {
    display: block;
    margin: 8px 0;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
}

/* Primary CTA */
.btn-register {
    background: linear-gradient(135deg,#2a7de1,#1a5bbf);
    color: #fff;
}

/* Secondary CTA */
.btn-brochure {
    border: 2px solid #2a7de1;
    color: #2a7de1;
    background: transparent;
}/* CSS Document */

