/* =========================================================
   CHEMICALENG.2027 — Conference Website Stylesheet
   ========================================================= */

:root {
  --primary: #0d3d66;
  --secondary: #1b6f74;
  --accent: #2aa198;
  --light: #f4f8f8;
  --white: #ffffff;
  --dark: #102a43;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-script: 'Great Vibes', cursive;

  --shadow-sm: 0 2px 8px rgba(16, 42, 67, 0.08);
  --shadow-md: 0 6px 20px rgba(16, 42, 67, 0.12);
  --shadow-lg: 0 14px 34px rgba(16, 42, 67, 0.18);

  --radius: 10px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary);
}

/* =========================================================
   FADE-IN ON SCROLL
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
}

.topbar-info {
  display: flex;
  gap: 22px;
}

.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-social {
  display: flex;
  gap: 14px;
}

.topbar-social a {
  color: var(--white);
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}

.topbar-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  line-height: 1.25;
}

.brand-code {
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--secondary);
  font-weight: 500;
  font-style: italic;
  margin-top: 2px;
}

.header-dates {
  text-align: right;
  font-size: 0.92rem;
  color: var(--dark);
}

.header-dates p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 2px;
}

.header-dates i {
  color: var(--accent);
}

.nav-bar {
  background: var(--light);
  border-top: 1px solid #e3edec;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  /* padding: 10px 24px; */
  padding: 10px 0px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  text-transform: capitalize;
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 17px;
  transition: color var(--transition);
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.main-nav a:not(.nav-cta):hover {
  color: var(--accent);
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  /* background: var(--primary); */
  background: linear-gradient(90deg, #1b4d73, #5faea8);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.nav-cta:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 61, 102, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  /* min-height: 560px; */
  min-height: 483px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 20, 38, 0.88) 0%, rgba(8, 20, 38, 0.55) 45%, rgba(8, 20, 38, 0.25) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 90px;
  padding-bottom: 90px;
  max-width: 720px;
}

.hero-script {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 18px;
}

.hero-meta p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  margin-bottom: 6px;
  color: #e6f1f1;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-gradient {
  /* background: linear-gradient(90deg, var(--accent), var(--secondary)); */
  background: linear-gradient(90deg, #1b4d73, #5faea8);
  color: var(--white);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(42, 161, 152, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

/* =========================================================
   SECTION TITLES (generic)
   ========================================================= */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 36px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-title-left {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 26px;
  position: relative;
  padding-bottom: 12px;
}

.section-title-left::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-section {
  padding: 70px 0;
  background: var(--white);
}

.about-desc {
  /* max-width: 820px; */
  margin: 0 auto 46px;
  text-align: center;
  color: #4a5b68;
  font-size: 1rem;
}

.about-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.icon-box {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  background: var(--light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.icon-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.icon-box i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.icon-box p {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--primary);
}

/* =========================================================
   PLENARY SPEAKERS (top section, 5 cards)
   ========================================================= */
.plenary-section {
  /* padding: 70px 0; */
  padding: 0px 0;
  background: var(--light);
}

.plenary-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.plenary-card {
  background: var(--primary);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding-bottom: 18px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.plenary-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.plenary-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 14px;
}

.plenary-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
  padding: 0 10px;
}

.plenary-card p {
  color: #b9d4d6;
  font-size: 0.78rem;
  padding: 0 14px;
}

/* =========================================================
   KEYNOTE SPEAKERS CAROUSEL
   ========================================================= */
.keynote-section {
  padding: 70px 0;
  background: var(--white);
}

.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  flex: 1;
  scroll-behavior: smooth;
}

.keynote-card {
  flex: 0 0 calc((100% - 80px) / 5);
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius);
  background: var(--light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.keynote-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.keynote-card img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid var(--accent);
}

.keynote-card h5 {
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.keynote-card p {
  font-size: 0.74rem;
  color: #647688;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}

.carousel-arrow:hover {
  background: var(--accent);
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.carousel-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cfd9d9;
  cursor: pointer;
  transition: background var(--transition);
}

.carousel-dots span.active {
  background: var(--accent);
}

/* =========================================================
   MAIN TWO-COLUMN LAYOUT
   ========================================================= */
.main-layout {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 40px;
  padding: 70px 24px;
  align-items: start;
}

.main-left,
.main-right {
  min-width: 0;
}

.main-right>section {
  margin-bottom: 50px;
}

.main-right>section:last-child {
  margin-bottom: 0;
}

/* ---------- Plenary large cards ---------- */
.plenary-large-section {
  margin-bottom: 60px;
}

.plenary-large-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.plenary-large-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.plenary-large-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.plenary-large-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.plc-body {
  padding: 16px;
}

.plc-body h4 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.plc-uni {
  font-size: 0.78rem;
  color: #647688;
  margin-bottom: 6px;
}

.plc-pres {
  font-size: 0.78rem;
  color: var(--secondary);
  font-style: italic;
}

/* ---------- Schedule ---------- */
.schedule-section {
  margin-bottom: 60px;
}

.schedule-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
}

.tab-btn {
  flex: 1;
  padding: 14px 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  background: #d7e6e6;
  color: var(--primary);
  transition: background var(--transition), color var(--transition);
}

.tab-btn.active {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: var(--white);
}

.schedule-panel {
  display: none;
  animation: fadeTab 0.4s ease;
}

.schedule-panel.active {
  display: block;
}

@keyframes fadeTab {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.schedule-table th {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: var(--white);
  text-align: left;
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.4px;
}

.schedule-table td {
  padding: 12px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid #eaf0f0;
}

.schedule-table tr:nth-child(even) td {
  background: var(--light);
}

.schedule-table td:first-child {
  font-weight: 600;
  color: var(--secondary);
  white-space: nowrap;
  width: 150px;
}

/* ---------- Session Highlights ---------- */
/* .session-highlights-section {
  margin-bottom: 0;
}

.highlight-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 40px;
}

.highlight-banner {
  background: linear-gradient(160deg, var(--dark), var(--primary));
  border-radius: var(--radius);
  padding: 26px;
  color: var(--white);
  max-height: 420px;
  overflow: hidden;
  position: relative;
}

.highlight-banner.alt {
  background: linear-gradient(160deg, var(--secondary), var(--accent));
}

.highlight-banner h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.highlight-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}

.highlight-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.76rem;
}

.highlight-table th {
  text-align: left;
  padding: 6px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: var(--font-heading);
}

.highlight-table td {
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.session-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.session-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.session-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.session-card .img-wrap,
.session-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.session-card:hover img {
  transform: scale(1.08);
}

.sc-body {
  padding: 16px;
  overflow: hidden;
}

.sc-body h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.sc-body p {
  font-size: 0.82rem;
  color: #647688;
} */


/*--------
new session
----------*/
/*==================================
CONFERENCE TRACKS SECTION
==================================*/

.tracks-section {
  padding: 70px 0;
  background: #f7fafb;
}

/* Heading */

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #12385a;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Track Box */

.track-item {

  display: flex;

  align-items: center;

  background: #fff;

  padding: 12px 18px;

  margin-bottom: 14px;

  border-radius: 8px;

  border-left: 4px solid #4f9b90;

  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);

  transition: all .3s ease;

  cursor: pointer;

}

.track-item:hover {

  transform: translateX(6px);

  border-left: 4px solid #12385a;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);

}

/* Track Number */

.track-item span {

  width: 40px;

  height: 40px;

  min-width: 40px;

  border-radius: 50%;

  background: linear-gradient(135deg, #12385a, #4f9b90);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 15px;

  font-weight: 700;

  margin-right: 15px;

}

/* Track Title */

.track-item {

  font-size: 16px;

  font-weight: 600;

  color: #12385a;

  line-height: 1.4;

}

/* Column Gap */

.tracks-section .col-lg-6 {

  margin-bottom: 10px;

}

/*=========================
TABLET
=========================*/

@media(max-width:991px) {

  .tracks-section {

    padding: 60px 0;

  }

  .section-title h2 {

    font-size: 32px;

  }

  .section-title p {

    font-size: 15px;

  }

  .track-item {

    padding: 12px 15px;

    font-size: 15px;

  }

  .track-item span {

    width: 36px;

    height: 36px;

    min-width: 36px;

    font-size: 14px;

    margin-right: 12px;

  }

}

/*=========================
MOBILE
=========================*/

@media(max-width:767px) {

  .tracks-section {

    padding: 50px 0;

  }

  .section-title {

    margin-bottom: 30px;

  }

  .section-title h2 {

    font-size: 28px;

  }

  .section-title p {

    font-size: 14px;

  }

  .track-item {

    padding: 10px 12px;

    margin-bottom: 10px;

    font-size: 14px;

    border-radius: 6px;

  }

  .track-item span {

    width: 32px;

    height: 32px;

    min-width: 32px;

    font-size: 13px;

    margin-right: 10px;

  }

}

/*=========================
SMALL MOBILE
=========================*/

@media(max-width:480px) {

  .section-title h2 {

    font-size: 24px;

  }

  .track-item {

    padding: 8px 10px;

    font-size: 13px;

  }

  .track-item span {

    width: 28px;

    height: 28px;

    min-width: 28px;

    font-size: 12px;

    margin-right: 8px;

  }

}

/*--------
new session
----------*/
/*=========================
LATEST NEWS
=========================*/
/*=========================
LATEST NEWS SECTION
=========================*/
/*=========================
LATEST NEWS
=========================*/

.latest-news-section {
  padding: 60px 0;
  background: #f7f9fb;
}

.latest-news-section .section-title {
  margin-bottom: 35px;
}

.latest-news-section .section-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #08244c;
  margin-bottom: 10px;
}

.latest-news-section .section-title p {
  font-size: 16px;
  color: #666;
}

.news-box {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
  transition: .4s;
  height: 100%;
}

.news-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.news-img {
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 180px;
  /* reduced image size */
  object-fit: cover;
  transition: .5s;
}

.news-box:hover img {
  transform: scale(1.08);
}

.news-text {
  padding: 20px;
}

.news-text .date {
  display: inline-block;
  color: #169c9c;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.news-text .date i {
  margin-right: 6px;
}

.news-text h3 {
  font-size: 15px;
  /* reduced title */
  font-weight: 700;
  line-height: 1.4;
  color: #08244c;
  margin-bottom: 12px;
}

.news-text p {
  font-size: 15px;
  line-height: 28px;
  color: #666;
  margin-bottom: 18px;
}

.news-text a {
  color: #169c9c;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: .3s;
}

.news-text a i {
  margin-left: 8px;
  transition: .3s;
}

.news-text a:hover {
  color: #08244c;
}

.news-text a:hover i {
  margin-left: 14px;
}

/* Tablet */

@media(max-width:991px) {

  .news-img img {
    height: 160px;
  }

  .news-text h3 {
    font-size: 22px;
  }

}

/* Mobile */

@media(max-width:767px) {

  .latest-news-section {
    padding: 50px 0;
  }

  .latest-news-section .section-title h2 {
    font-size: 30px;
  }

  .news-img img {
    height: 150px;
  }

  .news-text {
    padding: 16px;
  }

  .news-text h3 {
    font-size: 20px;
  }

  .news-text p {
    font-size: 14px;
    line-height: 24px;
  }

}

/* Small Mobile */

@media(max-width:480px) {

  .news-img img {
    height: 140px;
  }

  .news-text h3 {
    font-size: 18px;
  }

  .news-text p {
    font-size: 13px;
  }

  .news-text .date {
    font-size: 13px;
  }

}

/* =========================================================
   RIGHT SIDEBAR
   ========================================================= */

/* Who Should Attend */
.who-desc {
  font-size: 0.85rem;
  color: #647688;
  margin-bottom: 20px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.who-grid-single {
  grid-template-columns: 1fr;
  max-width: 50%;
}

.who-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.who-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.who-card i {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.who-card p {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Latest News */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-card {
  display: flex;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-body {
  padding: 10px 12px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-date {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
}

.news-body h5 {
  font-size: 0.86rem;
  margin: 4px 0;
  line-height: 1.3;
}

.news-time {
  font-size: 0.7rem;
  color: #8a99a6;
}

/* Conference Highlights widget */
.highlights-widget {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 14px 28px;
  /* padding: 0 38px; */
  padding: 0 129px;
}

.hw-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  line-height: 1.3;
}

.hw-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hw-box i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hw-box-2,
.hw-box-4,
.hw-box-6 {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.hw-center {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  z-index: 3;
  box-shadow: var(--shadow-md);
}

/* =========================================================
   SPONSORS
   ========================================================= */
.sponsors-section {
  padding: 70px 0;
  background: var(--light);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sponsor-logo {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter var(--transition), opacity var(--transition), transform var(--transition);
}

.sponsor-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-4px);
}

/* =========================================================
   FOOTER
   ========================================================= */
/*=========================
FOOTER
=========================*/

.site-footer {
  background: linear-gradient(160deg, var(--dark), var(--primary));
  color: #cfe3e3;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 40px;
}

.footer-col {
  width: 100%;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #b7cdd0;
  font-size: .9rem;
  text-decoration: none;
  transition: .3s;
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

/* Contact */

.footer-contact {
  margin: 0;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: #b7cdd0;
  font-size: .9rem;
  line-height: 1.6;
}

.footer-contact li i {
  width: 18px;
  color: var(--accent);
  margin-top: 3px;
}

/* Social */

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .3s;
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* Bottom */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: .85rem;
  color: #9fb7ba;
}

/* Tablet */

@media(max-width:991px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

}

/* Mobile */

@media(max-width:767px) {

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Laptop */
@media (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .plenary-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .plenary-large-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-layout {
    grid-template-columns: 1fr;
  }

  .main-right {
    margin-top: 10px;
  }

  .keynote-card {
    flex: 0 0 calc((100% - 60px) / 3);
  }

  .about-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlight-banners {
    grid-template-columns: 1fr;
  }

  .session-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-bar {
    background: transparent;
    border-top: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .topbar-info span:nth-child(2) {
    display: none;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    margin: 0;
    padding: 80px 0 0 0;
    background: var(--white);
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
    transition: right 0.35s ease;
    z-index: 1100;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 0 28px;
  }

  .main-nav ul li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid #eef2f2;
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-script {
    font-size: 1.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .about-icons {
    grid-template-columns: 1fr 1fr;
  }

  .plenary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plenary-large-grid {
    grid-template-columns: 1fr;
  }

  .keynote-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .session-cards-grid {
    grid-template-columns: 1fr;
  }

  .who-grid {
    grid-template-columns: 1fr 1fr;
  }

  .who-grid-single {
    max-width: 100%;
  }

  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .schedule-tabs {
    flex-wrap: wrap;
  }

  .highlights-widget {
    padding: 0 30px;
    gap: 10px 16px;
  }

  .hw-center {
    width: 76px;
    height: 76px;
    font-size: 0.62rem;
  }

  .hw-box {
    font-size: 0.66rem;
    padding: 10px 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .about-icons {
    grid-template-columns: 1fr;
  }

  .plenary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .keynote-card {
    flex: 0 0 100%;
  }

  .sponsors-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}






/* ==========================================
   SPONSORSHIP SECTION
========================================== */

.sponsorship-section {
  padding: 60px 0;
  background: #f8fafc;
}

.section-heading {
  text-align: center;
  margin-bottom: 35px;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0b3555;
  margin-bottom: 8px;
}

.section-heading p {
  font-size: 14px;
  color: #666;
  max-width: 650px;
  margin: 0 auto;
}

/* Grid */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Card */
.sponsor-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}

/* Heading */
.sponsor-card h3 {
  font-size: 20px;
  /* color: #0b3555; */
  color: #ffffff;
  margin-bottom: 4px;
  font-weight: 700;
}

/* Price */
.price {
  font-size: 22px;
  font-weight: 700;
  color: #1f9d8b;
  margin-bottom: 12px;
}

/* List */
.sponsor-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sponsor-card ul li {
  padding: 6px 0 6px 20px;
  font-size: 13px;
  color: #ffffff;
  line-height: 1.5;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}

.sponsor-card ul li:last-child {
  border-bottom: none;
}

.sponsor-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: #1f9d8b;
  font-size: 12px;
  font-weight: 700;
}

/* Button */
.sponsor-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  border-radius: 6px;
  background: #0b3555;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: .3s;
}

.sponsor-btn:hover {
  background: #1f9d8b;
  color: #fff;
}

/* Colored Borders */
.platinum {
  /* border-top: 3px solid #e5b95c; */
  background: linear-gradient(90deg, #1b4d73, #5faea8);
}

.gold {
  /* border-top: 3px solid #f5b700; */
  background: linear-gradient(90deg, #1b4d73, #5faea8);
}

.silver {
  /* border-top: 3px solid #c0c0c0; */
  background: linear-gradient(90deg, #1b4d73, #5faea8);
}

.exhibitor {
  /* border-top: 3px solid #1f9d8b; */
  background: linear-gradient(90deg, #1b4d73, #5faea8);
}

/* Responsive */
@media (max-width: 991px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .sponsorship-section {
    padding: 40px 0;
  }

  .sponsor-card {
    padding: 16px;
  }

  .sponsor-card h3 {
    font-size: 18px;
  }

  .price {
    font-size: 20px;
  }

  .sponsor-card ul li {
    font-size: 12px;
  }
}

/* .sponsorship-section {
  padding: 60px 0;
  background: #f8fafc;
}

.section-heading {
  text-align: center;
  margin-bottom: 35px;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0b3555;
  margin-bottom: 8px;
}

.section-heading p {
  font-size: 14px;
  color: #777;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sponsor-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .06);
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .10);
}

.sponsor-card h3 {
  font-size: 22px;
  color: #0b3555;
  margin-bottom: 5px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 15px;
}

.sponsor-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sponsor-card ul li {
  font-size: 14px;
  color: #555;
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.5;
}

.sponsor-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.sponsor-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  border-radius: 30px;
  background: #0b3555;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
}

.sponsor-btn:hover {
  background: #1f9d8b;
}

.platinum {
  border-left: 4px solid #eab308;
}

.gold {
  border-left: 4px solid #f59e0b;
}

.silver {
  border-left: 4px solid #c0c0c0;
}

.exhibitor {
  border-left: 4px solid #10b981;
}

@media(max-width:768px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .sponsor-card {
    padding: 18px;
  }
} */

.abstract-section {
  padding: 80px 0;
  background: #f5f8fc;
}

.abstract-header {
  text-align: center;
  margin-bottom: 40px;
}

.abstract-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b3555;
  margin-bottom: 10px;
}

.abstract-header p {
  color: #666;
  font-size: 16px;
}

.abstract-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0b3555;
}

.form-control {
  width: 100%;
  height: 40px;
  border: 1px solid #dbe4ee;
  /* border-radius: 12px; */
  padding: 0 18px;
  font-size: 14px;
  transition: .3s;
}

.form-control:focus {
  border-color: #1f9d8b;
  box-shadow: 0 0 0 4px rgba(31, 157, 139, .12);
  outline: none;
}

.upload-box input {
  padding: 12px;
  height: auto;
}

.download-box {
  margin-bottom: 25px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0b3555;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.download-btn:hover {
  background: #1f9d8b;
  color: #fff;
}

.submit-btn {
  background: linear-gradient(135deg, #0b3555, #1f9d8b);
  color: #fff;
  border: none;
  padding: 14px 45px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  transition: .3s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

@media(max-width:768px) {
  .abstract-form-box {
    padding: 25px;
  }

  .abstract-header h2 {
    font-size: 30px;
  }
}




.sponsor-info-section {
  padding: 40px 0;
}

.sponsor-info-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  border-left: 4px solid #0b3555;
}

.sponsor-info-box p {
  margin-bottom: 10px;
  color: #444;
  line-height: 1.8;
  font-size: 15px;
}

.sponsor-info-box a {
  color: #0b3555;
  font-weight: 600;
  text-decoration: none;
}

.sponsor-info-box a:hover {
  color: #1f9d8b;
}

.pay-btn-wrap {
  text-align: center;
  margin-top: 25px;
}

.pay-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0b3555, #1f9d8b);
  color: #fff;
  padding: 12px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: .3s;
}

.pay-btn:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}






/* Registration Cards */
.registration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.reg-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .08);
  transition: .3s;
}

.reg-card:hover {
  transform: translateY(-5px);
}

.reg-header {
  background: #0b3555;
  color: #fff;
  text-align: center;
  padding: 18px 15px;
}

.reg-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.reg-header span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #ffd166;
  font-weight: 600;
}

.registration-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.registration-list li {
  border-bottom: 1px solid #ececec;
}

.registration-list li:last-child {
  border-bottom: none;
}

.registration-list label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  margin: 0;
}

.registration-list label:hover {
  background: #f8fafc;
}

.radio-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.registration-list input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #0b3555;
}

.registration-list span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.registration-list strong {
  font-size: 15px;
  color: #0b3555;
  font-weight: 700;
}

.reg-btn {
  display: block;
  text-align: center;
  margin: 15px;
  padding: 10px;
  background: #0b3555;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
}

.reg-btn:hover {
  background: #1f9d8b;
  color: #fff;
}

.featured {
  border: 2px solid #1f9d8b;
}

.featured .reg-header {
  background: #1f9d8b;
}

/* Mobile */
@media (max-width: 991px) {
  .registration-grid {
    grid-template-columns: 1fr;
  }
}


/* Accommodation Section */
.accommodation-section {
  margin-top: 40px;
}

.accommodation-wrapper {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 20px;
  align-items: start;
}

.accommodation-table h3,
.registration-includes h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0b3555;
  margin-bottom: 12px;
}

.accommodation-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}

.accommodation-table th {
  background: #0b3555;
  color: #fff;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 600;
}

.accommodation-table td {
  padding: 10px 15px;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.accommodation-table tr:last-child td {
  border-bottom: none;
}

.accommodation-table input[type="radio"] {
  width: 14px;
  height: 14px;
  accent-color: #0b3555;
  margin-right: 6px;
}

/* Registration Includes */
.registration-includes {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}

.registration-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.registration-includes ul li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  padding-left: 20px;
  position: relative;
}

.registration-includes ul li:last-child {
  border-bottom: none;
}

.registration-includes ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1f9d8b;
  font-weight: 700;
}

/* Accompanying Person */
.accompany-box {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 500;
}

/* Total Cost */
.total-cost {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 700;
  color: #0b3555;
}

.total-cost span {
  color: #1f9d8b;
}

/* Captcha */
.captcha-box {
  margin-top: 20px;
  max-width: 280px;
}

.captcha-image {
  background: #fff;
  border: 2px dashed #0b3555;
  border-radius: 8px;
  padding: 0px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 10px;
}

.captcha-box label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.captcha-box input {
  width: 100%;
  height: 42px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 12px;
}

.captcha-box p {
  margin-top: 8px;
  font-size: 13px;
}

/* Terms */
.terms-box {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

/* Submit Button */
/* .submit-area {
  margin-top: 20px;
} */

.submit-btn {
  background: #0b3555;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  margin-bottom: 10px;
}

.submit-btn:hover {
  background: #1f9d8b;
}

@media(max-width:991px) {
  .accommodation-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   VENUE SECTION
========================== */

.venue-section {
  padding: 60px 0;
}

/* .venue-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
} */

/* Heading */

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b3555;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 15px;
  color: #666;
  max-width: 700px;
  margin: auto;
}

/* Layout */

.venue-wrapper {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 15px;
  align-items: center;
}

/* Map */

.venue-map {
  overflow: hidden;
  border-radius: 12px;
}

.venue-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
}

/* Images */

.venue-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.venue-img {
  overflow: hidden;
  border-radius: 12px;
}

.venue-img img {
  width: 100%;
  height: 169px;
  object-fit: cover;
  border-radius: 12px;
  transition: .4s;
}

.venue-img:hover img {
  transform: scale(1.05);
}

/* Mobile */

@media(max-width:991px) {

  .venue-wrapper {
    grid-template-columns: 1fr;
  }

  .venue-map iframe {
    height: 300px;
  }

  .venue-gallery {
    margin-top: 15px;
  }

  .venue-img img {
    height: 180px;
  }
}

@media(max-width:576px) {

  .section-title h2 {
    font-size: 28px;
  }

  .venue-gallery {
    grid-template-columns: 1fr;
  }

  .venue-img img {
    height: 220px;
  }

  .venue-map iframe {
    height: 250px;
  }
}