
:root{
  --primary:#062b5f;
  --secondary:#0a4b8f;
  --gold:#d4a44f;
}

body{
  font-family:'Manrope',sans-serif;
  overflow-x:hidden;
  color:#102542;
  background:#fff;
}

/*========================
NAVBAR
=========================*/

.navbar{
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  padding:12px 0;
}

.navbar-brand{
  text-decoration:none;
}

.main-logo{
  height:78px;
  width:auto;
  object-fit:contain;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand-text span{
  font-size:40px;
  font-weight:900;
  color:#1f1f1f;
}

.brand-text small{
  font-size:28px;
  font-weight:700;
  color:#1f1f1f;
  margin-top:6px;
}

.nav-link{
  color:#062b5f !important;
  font-weight:800;
  margin:0 8px;
  position:relative;
}

.nav-link:after{
  content:'';
  position:absolute;
  width:0;
  height:2px;
  background:#d4a44f;
  left:0;
  bottom:-4px;
  transition:.3s;
}

.nav-link:hover:after{
  width:100%;
}

/* MOBILE */

@media(max-width:991px){

  .main-logo{
    height:58px;
  }

  .brand-text span{
    font-size:24px;
  }

  .brand-text small{
    font-size:18px;
    margin-top:3px;
  }

  .navbar-collapse{
    padding-top:15px;
  }

  .nav-link{
    padding:10px 0 !important;
  }

}

@media(max-width:576px){

  .main-logo{
    height:48px;
  }

  .brand-text span{
    font-size:18px;
  }

  .brand-text small{
    font-size:14px;
  }

}
/*========================
BANNER
=========================*/

.hero-banner{
  position:relative;
  overflow:hidden;
  background:#041b44;
}

.hero-height{
  min-height:712px;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}

.overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
  90deg,
  rgba(2,16,40,.88) 0%,
  rgba(2,16,40,.72) 35%,
  rgba(2,16,40,.28) 65%,
  rgba(2,16,40,.08) 100%
  );
}

.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding:70px 0;
}

.hero-badge{
  display:inline-block;
  padding:10px 22px;
  border-radius:60px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(10px);
  margin-bottom:24px;
  font-size:14px;
  font-weight:800;
}

.hero-title{
  font-size:clamp(52px,7vw,92px);
  line-height:.92;
  font-weight:900;
  margin-bottom:20px;
}

.hero-title span{
  color:var(--gold);
}

.hero-subtitle{
  font-size:24px;
  line-height:1.45;
  font-weight:700;
  color:#eef5ff;
  max-width:680px;
}

/* DATE BOX */

.date-box{
  margin-top:35px;
  display:flex;
  align-items:center;
  gap:18px;
  width:max-content;
  padding:18px 24px;
  border-radius:24px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(12px);
}

.date-number{
  width:90px;
  height:90px;
  background:#fff;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#062b5f;
  font-size:58px;
  font-weight:900;
}

.date-content h3{
  margin:0;
  font-size:34px;
  font-weight:900;
}

.date-content p{
  margin:0;
  font-size:17px;
  font-weight:700;
  color:#dce9ff;
}

/*========================
COUNTDOWN
=========================*/

.countdown-section{
  margin-top:-60px;
  position:relative;
  z-index:20;
}

.countdown-box-main{
  background:#fff;
  border-radius:28px;
  padding:35px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.count-content span{
  color:var(--gold);
  font-weight:800;
  text-transform:uppercase;
}

.count-content h3{
  font-size:32px;
  font-weight:900;
  color:var(--primary);
  margin-top:10px;
}

.countdown-wrapper{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

.count-box{
  width:92px;
  height:92px;
  border-radius:22px;
  background:linear-gradient(180deg,#062b5f,#041b44);
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.count-box h4{
  font-size:32px;
  font-weight:900;
  margin-bottom:0;
}

.count-box span{
  font-size:11px;
  text-transform:uppercase;
  font-weight:700;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.btn-register{
  background:linear-gradient(135deg,#d4a44f,#f5d79c);
  color:#062b5f;
  padding:16px 24px;
  border-radius:60px;
  text-decoration:none;
  font-weight:900;
  text-align:center;
}

.btn-program{
  background:#062b5f;
  color:#fff;
  padding:16px 24px;
  border-radius:60px;
  text-decoration:none;
  font-weight:800;
  text-align:center;
}

/*========================
SECTION
=========================*/

.section-padding{
  padding:90px 0;
}

.section-title{
  text-align:center;
  margin-bottom:55px;
}

.section-title span{
  color:var(--gold);
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
}

.section-title h2{
  font-size:46px;
  font-weight:900;
  color:var(--primary);
  margin-top:10px;
}

/*========================
ABOUT CARDS
=========================*/

.info-card{
  background:#fff;
  border-radius:28px;
  padding:35px;
  height:100%;
  box-shadow:0 18px 45px rgba(0,0,0,.07);
  border:1px solid #e7eef7;
  transition:.3s;
}

.info-card:hover{
  transform:translateY(-8px);
}

.info-card i{
  width:70px;
  height:70px;
  border-radius:18px;
  background:#eaf4ff;
  color:var(--secondary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin-bottom:22px;
}

.info-card h4{
  font-weight:900;
  margin-bottom:15px;
  color:var(--primary);
}

/*========================
REGISTRATION
=========================*/

.registration-section{
  background:linear-gradient(135deg,#031631,#07376c);
  color:#fff;
}

.fee-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  padding:35px;
  backdrop-filter:blur(10px);
}

.fee-box{
  padding:22px;
  border-radius:20px;
  background:rgba(255,255,255,.08);
}

.fee-box h4{
  font-weight:900;
}

.fee-box p{
  margin:0;
  color:#f5d79c;
  font-size:28px;
  font-weight:900;
}

.register-btn{
  display:inline-block;
  margin-top:25px;
  background:linear-gradient(135deg,#d4a44f,#f4d08a);
  color:var(--primary);
  padding:16px 40px;
  border-radius:60px;
  text-decoration:none;
  font-weight:900;
}

/*========================
SPEAKERS
=========================*/

.speaker-card{
  background:#fff;
  border-radius:24px;
  padding:28px;
  height:100%;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
  border:1px solid #e6eef7;
  transition:.3s;
}

.speaker-card:hover{
  background:var(--primary);
  color:#fff;
  transform:translateY(-7px);
}

.speaker-card h5{
  font-weight:900;
  margin-bottom:8px;
}

/*========================
FOOTER
=========================*/

.footer{
  background:#031631;
  color:#fff;
  padding:40px 0;
  text-align:center;
}

/*========================
RESPONSIVE
=========================*/

@media(max-width:991px){

  .hero-height{
    min-height:520px;
  }

  .hero-bg{
    object-fit:cover;
    object-position:68% center;
  }

  .hero-content{
    text-align:center;
    padding:80px 0 50px;
  }

  .hero-subtitle{
    font-size:18px;
  }

  .date-box{
    margin:auto;
    margin-top:30px;
  }

  .count-content{
    text-align:center;
    margin-bottom:25px;
  }

  .hero-buttons{
    margin-top:30px;
  }

}

@media(max-width:576px){

  .hero-height{
    min-height:430px;
  }

  .hero-bg{
    object-fit:cover;
    object-position:72% center;
    transform:scale(1.02);
  }

  .overlay{
    background:
    linear-gradient(
    90deg,
    rgba(2,16,40,.88) 0%,
    rgba(2,16,40,.72) 45%,
    rgba(2,16,40,.18) 100%
    );
  }

  .hero-content{
    padding:55px 0 35px;
    text-align:left;
  }

  .hero-title{
    font-size:42px;
  }

  .hero-subtitle{
    font-size:15px;
    max-width:240px;
  }

  .hero-badge{
    font-size:11px;
    padding:8px 16px;
  }

  .date-box{
    width:max-content;
    padding:12px 16px;
    gap:12px;
    border-radius:18px;
  }

  .date-number{
    width:60px;
    height:60px;
    font-size:38px;
  }

  .date-content h3{
    font-size:20px;
  }

  .date-content p{
    font-size:12px;
  }

  .count-box{
    width:72px;
    height:72px;
  }

  .count-box h4{
    font-size:22px;
  }

}



/*========================
VENUE SECTION
=========================*/

.venue-section{
  background:#f8fbff;
  position:relative;
  overflow:hidden;
}

.venue-tag{
  display:inline-block;
  padding:10px 20px;
  border-radius:50px;
  background:#eaf4ff;
  color:#0a4b8f;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:20px;
}

.venue-title{
  font-size:52px;
  font-weight:900;
  color:#062b5f;
  margin-bottom:22px;
}

.venue-text{
  font-size:18px;
  line-height:1.8;
  color:#4d627b;
  margin-bottom:30px;
}

.venue-info{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-bottom:35px;
}

.venue-icon{
  width:65px;
  height:65px;
  border-radius:18px;
  background:linear-gradient(135deg,#062b5f,#0a4b8f);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  flex-shrink:0;
}

.venue-info h5{
  font-weight:900;
  color:#062b5f;
  margin-bottom:6px;
}

.venue-info p{
  margin:0;
  color:#556b84;
  line-height:1.6;
}

.venue-btn{
  display:inline-block;
  padding:16px 34px;
  border-radius:60px;
  background:linear-gradient(135deg,#d4a44f,#f4d08a);
  color:#062b5f;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 15px 35px rgba(212,164,79,.25);
  transition:.3s;
}

.venue-btn:hover{
  transform:translateY(-5px);
  color:#062b5f;
}

.venue-image{
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.venue-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* MOBILE */

@media(max-width:991px){

  .venue-section{
    text-align:center;
  }

  .venue-title{
    font-size:38px;
  }

  .venue-text{
    font-size:16px;
  }

  .venue-info{
    justify-content:center;
    text-align:left;
  }

}

@media(max-width:576px){

  .venue-title{
    font-size:30px;
  }

  .venue-text{
    font-size:15px;
    line-height:1.7;
  }

  .venue-info{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .venue-btn{
    width:100%;
    text-align:center;
  }

}
